@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Oswald:wght@200;300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #fff;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  background: rgb(255, 255, 255);
  color: #606060;
  line-height: 2;
  overflow-x: hidden;
  word-wrap: break-word;
}

a {
  opacity: 1;
  transition: 0.2s;
  text-decoration: none;
  word-break: break-all;
}

a:link {
  color: #606060;
}

a:visited {
  color: #606060;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  width/***/: auto;
  display: block;
  margin: 0;
}

strong,
.strong {
  font-weight: 700;
}

p,
ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

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

header.header {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  header.header {
    margin-bottom: 0;
  }
}

.page_title {
  color: #1d80e2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page_title {
    font-size: 30px;
    padding: 30px 0;
  }
}

.mtb10 {
  margin: 10px auto;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 16px;
  bottom: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #1d80e2;
  background: #fff;
  border: 1px solid #1d80e2;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  color: #fff;
  background: #1d80e2;
}

.btn_detail {
  display: grid;
  place-content: center;
}
.btn_detail a {
  background-color: #20a5eb;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #fff;
  padding: 5px 20px 5px 10px;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  border: 1px solid #20a5eb;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_detail a {
    padding: 5px 30px 5px 20px;
  }
}
.btn_detail a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(-90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail a::after {
    right: 10px;
  }
}
.btn_detail a:hover {
  background-color: #ebf7ff;
  color: #20a5eb;
}
.btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail.clr_lightBlue a {
  border: 1px solid #20a5eb;
}
.btn_detail.clr_lightBlue a::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail.clr_lightBlue a:hover {
  color: #20a5eb;
  background-color: #ebf7ff;
}
.btn_detail.clr_lightBlue a:hover::after {
  background-image: url(../images/public/icn_triangleDown-blueLIght.svg);
}
.btn_detail.clr_green a {
  background-color: #00cba2;
  border: 1px solid #00cba2;
}
.btn_detail.clr_green a::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail.clr_green a:hover {
  color: #00cba2;
  background-color: #f0f0f0;
}
.btn_detail.clr_green a:hover::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.btn_detail.clr_white a {
  background-color: #fff;
  color: #1d80e2;
  border: 1px solid #1d80e2;
}
.btn_detail.clr_white a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail.clr_white a:hover {
  color: #fff;
  background-color: #1d80e2;
}
.btn_detail.clr_white a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail.clr_white a.size240 {
  min-width: 240px;
  width: 100%;
  font-size: 16px;
  padding: 10px 30px 10px 20px;
}
.btn_detail.clr_white a.size240::after {
  right: 10px;
}
.btn_detail-lg {
  margin: 30px auto;
  display: grid;
  place-content: center;
}
.btn_detail-lg a {
  background-color: #1d80e2;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #fff;
  padding: 10px 20px 10px 10px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  border: 1px solid #1d80e2;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.3;
  min-width: 280px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn_detail-lg a {
    padding: 10px 30px 10px 20px;
  }
}
.btn_detail-lg a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(-90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail-lg a::after {
    right: 15px;
  }
}
.btn_detail-lg a:hover {
  background-color: #ebf7ff;
  color: #1d80e2;
}
.btn_detail-lg a:hover::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail-lg.icn_left a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail-lg.icn_left a::after {
    right: 15px;
  }
}
.btn_detail-lg.icn_left a:hover::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail-lg.clr_green a {
  background-color: #00cba2;
  border: 1px solid #00cba2;
}
.btn_detail-lg.clr_green a::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail-lg.clr_green a:hover {
  color: #00cba2;
  background-color: #f0f0f0;
}
.btn_detail-lg.clr_green a:hover::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.btn_detail-lg.clr_white a {
  background-color: #fff;
  border: 1px solid #1d80e2;
  color: #1d80e2;
}
.btn_detail-lg.clr_white a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail-lg.clr_white a:hover {
  color: #fff;
  background-color: #1d80e2;
}
.btn_detail-lg.clr_white a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail-lg.clr_white.icn_freeDial {
  font-family: "Outfit", sans-serif;
  padding: 0;
  margin: 0;
}
.btn_detail-lg.clr_white.icn_freeDial a {
  font-size: 30px;
  padding: 8px 40px;
}
.btn_detail-lg.clr_white.icn_freeDial a:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  background-image: url(../images/public/icn_freeDial-blue.svg);
  background-size: cover;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 10px;
}
.btn_detail-lg.clr_white.icn_freeDial a:hover:before {
  background-image: url(../images/public/icn_freeDial.svg);
}
.btn_detail-lg span {
  display: inline-block;
}
.btn_detail-xlg {
  margin: 30px auto 60px;
  display: grid;
  place-content: center;
}
.btn_detail-xlg a {
  background-color: #1d80e2;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #fff;
  padding: 10px 30px 10px 30px;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  border: 1px solid #1d80e2;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn_detail-xlg a {
    padding: 10px 50px 10px 50px;
  }
}
.btn_detail-xlg a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(-90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail-xlg a::after {
    right: 15px;
  }
}
.btn_detail-xlg a:hover {
  background-color: #ebf7ff;
  color: #1d80e2;
}
.btn_detail-xlg a:hover::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail-xlg.icn_left a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail-xlg.icn_left a::after {
    right: 15px;
  }
}
.btn_detail-xlg.clr_green a {
  background-color: #00cba2;
  border: 1px solid #00cba2;
}
.btn_detail-xlg.clr_green a::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail-xlg.clr_green a:hover {
  color: #00cba2;
  background-color: #f0f0f0;
}
.btn_detail-xlg.clr_green a:hover::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.btn_detail-xlg span {
  display: inline-block;
}
.btn_detail-xlg.clr_whiteGreen a {
  background-color: #fff;
  border: 1px solid #00cba2;
  color: #00cba2;
}
.btn_detail-xlg.clr_whiteGreen a::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.btn_detail-xlg.clr_whiteGreen a:hover {
  color: #fff;
  background-color: #00cba2;
}
.btn_detail-xlg.clr_whiteGreen a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_detail-xlg.tictok a {
  background-color: #fff;
  border: 1px solid #1d83e5;
  color: #1d83e5;
  font-size: 12px;
  padding: 15px 30px 15px 40px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .btn_detail-xlg.tictok a {
    font-size: 16px;
    padding: 15px 60px 15px 60px;
  }
}
.btn_detail-xlg.tictok a::before {
  position: absolute;
  top: 10px;
  left: 20px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 29px;
  background-image: url(../images/about/icn_tiktok.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_detail-xlg.tictok a::before {
    width: 28px;
    height: 39px;
    top: 5px;
  }
}
.btn_detail-xlg.tictok a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.btn_detail-xlg.tictok a:hover {
  color: #fff;
  background-color: #1d83e5;
}
.btn_detail-xlg.tictok a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.btn_select {
  display: grid;
  place-content: center;
}
.btn_select a {
  min-width: 160px;
  background-color: #fff;
  border: 1px solid #fff;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #20a5eb;
  padding: 9px 20px 9px 20px;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: -1px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .btn_select a {
    padding: 15px 30px 15px 30px;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.btn_select a:hover {
  background-color: #20a5eb;
  color: #fff;
}
.btn_select a.btn_link.active {
  background-color: #20a5eb;
  color: #fff;
}

.btn_pageNav {
  margin: 10px auto;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .btn_pageNav {
    margin: 30px auto;
  }
}
.btn_pageNav span {
  background-color: #00cba2;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #fff;
  padding: 10px 20px 10px 10px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  border: 1px solid #00cba2;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.3;
  min-width: 280px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn_pageNav span {
    padding: 10px 30px 10px 20px;
  }
}
.btn_pageNav span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(-90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_pageNav span::after {
    right: 15px;
  }
}
.btn_pageNav span:hover {
  color: #00cba2;
  background-color: #f0f0f0;
}
.btn_pageNav span:hover::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.btn_pageNav.icn_left span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  transform: rotate(90deg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .btn_pageNav.icn_left span::after {
    right: 15px;
  }
}
.btn_pageNav.icn_left span:hover::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}

/* icons */
/* breadCrumb */
.breadCrumb {
  font-size: 12px;
  margin: 0 auto;
  padding: 3px 10px;
  line-height: 1.3;
  background-color: #ebf7ff;
}
.breadCrumb .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
.breadCrumb .container a {
  opacity: 1;
}
.breadCrumb .container a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.item .item_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .item .item_list {
    justify-content: space-between;
  }
}
.item .item_list li {
  padding: 1%;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .item .item_list li {
    padding: 0;
    width: auto;
  }
}
.item .item_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding: 0 7px 10px;
  box-sizing: border-box;
  color: #606060;
}
@media screen and (min-width: 768px) {
  .item .item_list li a {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li a {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.item .item_list li a span {
  display: inline-block;
  white-space: nowrap;
}
.item .item_list li a span.item_img {
  display: grid;
  place-content: center;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .item .item_list li a span.item_img {
    height: 45px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li a span.item_img {
    height: 55px;
  }
}
.item .item_list li a span.item_txt {
  font-size: 11px;
  letter-spacing: -1px;
}
@media screen and (min-width: 1000px) {
  .item .item_list li a span.item_txt {
    font-size: 14px;
  }
}
.item .item_list li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 11px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-blue.svg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .item .item_list li a::after {
    bottom: 5px;
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 820px) {
  .item .item_list li a::after {
    bottom: 7px;
  }
}
.item .item_list li a.active, .item .item_list li a:hover {
  background-color: #1f94e7;
  color: #fff;
}
.item .item_list li a.active::after, .item .item_list li a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
  background-size: cover;
}
.item .item_list li.item_00 a span {
  font-size: 13px;
  color: #ff322e;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_00 a span {
    line-height: 1.2;
  }
}
@media screen and (min-width: 820px) {
  .item .item_list li.item_00 a span {
    font-size: 14px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_00 a span {
    font-size: 15px;
    line-height: 1.4;
  }
}
.item .item_list li.item_00 a span.item_img {
  display: none;
}
.item .item_list li.item_00 a:hover span {
  color: #fff;
}
.item .item_list li.item_01 a span {
  width: 100%;
}
.item .item_list li.item_01 a span.item_img {
  background: url(../images/public/icn_01.svg) no-repeat;
  background-position: center;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_01 a span.item_img {
    width: 25px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_01 a span.item_img {
    width: 35px;
  }
}
.item .item_list li.item_01 a:hover span.item_img {
  background: url(../images/public/icn_01-on.svg) no-repeat;
  background-position: center;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_01 a:hover span.item_img {
    width: 25px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_01 a:hover span.item_img {
    width: 35px;
  }
}
.item .item_list li.item_02 a span {
  width: 100%;
}
.item .item_list li.item_02 a span.item_img {
  background: url(../images/public/icn_02.svg) no-repeat;
  background-position: center;
  width: 35px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_02 a span.item_img {
    width: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_02 a span.item_img {
    width: 35px;
  }
}
.item .item_list li.item_02 a:hover span.item_img {
  background: url(../images/public/icn_02-on.svg) no-repeat;
  background-position: center;
  width: 35px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_02 a:hover span.item_img {
    width: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_02 a:hover span.item_img {
    width: 35px;
  }
}
.item .item_list li.item_02 a:hover span.item_txt {
  letter-spacing: -1px;
}
.item .item_list li.item_03 a span {
  width: 100%;
}
.item .item_list li.item_03 a span.item_img {
  background: url(../images/public/icn_03.svg) no-repeat;
  background-position: center;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_03 a span.item_img {
    width: 43px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_03 a span.item_img {
    width: 53px;
  }
}
.item .item_list li.item_03 a:hover span.item_img {
  background: url(../images/public/icn_03-on.svg) no-repeat;
  background-position: center;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_03 a:hover span.item_img {
    width: 43px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_03 a:hover span.item_img {
    width: 53px;
  }
}
.item .item_list li.item_04 a span {
  width: 100%;
}
.item .item_list li.item_04 a span.item_img {
  background: url(../images/public/icn_04.svg) no-repeat;
  background-position: center;
  width: 37px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_04 a span.item_img {
    width: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_04 a span.item_img {
    width: 42px;
  }
}
.item .item_list li.item_04 a:hover span.item_img {
  background: url(../images/public/icn_04-on.svg) no-repeat;
  background-position: center;
  width: 37px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_04 a:hover span.item_img {
    width: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_04 a:hover span.item_img {
    width: 42px;
  }
}
.item .item_list li.item_05 a span {
  width: 100%;
}
.item .item_list li.item_05 a span.item_img {
  background: url(../images/public/icn_05.svg) no-repeat;
  background-position: center;
  width: 47px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_05 a span.item_img {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_05 a span.item_img {
    width: 52px;
  }
}
.item .item_list li.item_05 a:hover span.item_img {
  background: url(../images/public/icn_05-on.svg) no-repeat;
  background-position: center;
  width: 47px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_05 a:hover span.item_img {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_05 a:hover span.item_img {
    width: 52px;
  }
}
.item .item_list li.item_06 a span {
  width: 100%;
}
.item .item_list li.item_06 a span.item_img {
  background: url(../images/public/icn_06.svg) no-repeat;
  background-position: center;
  width: 55px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_06 a span.item_img {
    width: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_06 a span.item_img {
    width: 60px;
  }
}
.item .item_list li.item_06 a:hover span.item_img {
  background: url(../images/public/icn_06-on.svg) no-repeat;
  background-position: center;
  width: 55px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_06 a:hover span.item_img {
    width: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_06 a:hover span.item_img {
    width: 60px;
  }
}
.item .item_list li.item_07 a span {
  width: 100%;
}
.item .item_list li.item_07 a span.item_img {
  background: url(../images/public/icn_07.svg) no-repeat;
  background-position: center;
  width: 65px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_07 a span.item_img {
    width: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_07 a span.item_img {
    width: 70px;
  }
}
.item .item_list li.item_07 a:hover span.item_img {
  background: url(../images/public/icn_07-on.svg) no-repeat;
  background-position: center;
  width: 65px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_07 a:hover span.item_img {
    width: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_07 a:hover span.item_img {
    width: 70px;
  }
}
.item .item_list li.item_07 a.active span.item_img {
  background: url(../images/public/icn_07-on.svg) no-repeat;
}
.item .item_list li.item_08 a span {
  width: 100%;
}
.item .item_list li.item_08 a span.item_img {
  background: url(../images/public/icn_08.svg) no-repeat;
  background-position: center;
  width: 47px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_08 a span.item_img {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_08 a span.item_img {
    width: 52px;
  }
}
.item .item_list li.item_08 a:hover span.item_img {
  background: url(../images/public/icn_08-on.svg) no-repeat;
  background-position: center;
  width: 47px;
}
@media screen and (min-width: 768px) {
  .item .item_list li.item_08 a:hover span.item_img {
    width: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .item .item_list li.item_08 a:hover span.item_img {
    width: 52px;
  }
}

.product_nav {
  background-color: #20a5eb;
  color: #fff;
  margin: 0 auto;
  padding: 30px 10px;
}
.product_nav .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.product_nav .content {
  text-align: center;
}
.product_nav .content .content_title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .product_nav .content .content_title {
    font-size: 24px;
  }
}
.product_nav .content .content_subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .product_nav .content .content_subtitle {
    font-size: 20px;
  }
}
.product_nav .item_list {
  margin: 0 auto 40px;
}
.product_nav .item_list li a {
  width: 95px;
  height: 95px;
  line-height: 1;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .product_nav .item_list li a {
    width: 75px;
    height: 75px;
    line-height: 1;
    border-radius: 20px;
  }
}
@media screen and (min-width: 820px) {
  .product_nav .item_list li a {
    width: 80px;
    height: 80px;
    line-height: 1;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .product_nav .item_list li a {
    width: 105px;
    height: 105px;
    line-height: 1;
    border-radius: 20px;
  }
}
.product_nav .item_list li a::after {
  background-image: url(../images/public/icn_triangleDown-green.svg);
}
.product_nav .item_list li a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.product_nav .item_list li a.active::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}

.keyword .keyword_list {
  margin: 10px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}
.keyword .keyword_list li {
  background-color: #fff;
  width: auto;
  height: 50px;
  line-height: 1;
  border-radius: 30px;
  color: #606060;
  display: inline-block;
  height: auto;
  padding: 14px 20px;
  line-height: 1.1;
}
.keyword .control {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.keyword .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.keyword .control_indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 1px solid #1f94e7;
  box-sizing: border-box;
}
.keyword .control--radio .control_indicator {
  border-radius: 50%;
}
.keyword .control:hover input ~ .control_indicator,
.keyword .control input:focus ~ .control_indicator {
  background: #ebf7ff;
}
.keyword .control input:checked ~ .control_indicator {
  background: #1f94e7;
}
.keyword .control:hover input:not([disabled]):checked ~ .control_indicator,
.keyword .control input:checked:focus ~ .control_indicator {
  background: #1f94e7;
}
.keyword .control input:disabled ~ .control_indicator {
  background: #ebf7ff;
  opacity: 0.6;
  pointer-events: none;
}
.keyword .control_indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.keyword .control input:checked ~ .control_indicator:after {
  display: block;
}
.keyword .control-checkbox .control_indicator:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.keyword .control-checkbox input:disabled ~ .control_indicator:after {
  border-color: #7b7b7b;
}

.btn_search {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 9px 40px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  transition: all 0.3s;
  background-color: #00c492;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 0 auto 10px;
  display: block;
}
.btn_search:hover {
  background-color: #00cba2;
}

.btn_search_comment {
  text-align: center;
}

/* icons */
.thumbnail {
  cursor: pointer;
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

#modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
#modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
#modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
#modal-video iframe {
  width: 64vw;
  height: 36vw;
}

.staff .staff_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .staff .staff_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.staff .staff_header {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.staff .staff_header .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 30px 0;
}
.staff .staff_header .content .content_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .staff .staff_header .content .content_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.staff .staff_header .content .content_txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #1d80e2;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .staff .staff_header .content .content_txt {
    text-align: center;
    font-size: 20px;
  }
}
.staff .staff_header .content .content_txt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .staff .staff_header .content .content_txt br {
    display: block;
  }
}
.staff .staff_header .content .btn_detail-lg {
  margin: 0 auto;
  padding: 30px 0 0;
}
.staff .staff_header .content .btn_detail-lg a {
  background-color: #fff;
  border: 1px solid #1d80e2;
  color: #1d80e2;
}
.staff .staff_header .content .btn_detail-lg a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.staff .staff_header .content .btn_detail-lg a:hover {
  color: #fff;
  background-color: #1d80e2;
}
.staff .staff_header .content .btn_detail-lg a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.staff .staff01 {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.staff .staff01 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 30px 0;
}
.staff .staff_list {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .staff .staff_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
  }
}
.staff .staff_list li {
  margin-bottom: 20px;
}
.staff .staff_list .staff_wrap {
  border: 1px solid #20a5eb;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_wrap {
    flex-direction: column;
    text-align: center;
  }
}
.staff .staff_list .staff_wrap br {
  display: none;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_wrap br {
    display: block;
    text-align: center;
    font-size: 20px;
  }
}
.staff .staff_list .staff_img {
  margin-bottom: 10px;
  display: grid;
  place-content: center;
  flex-basis: 35%;
}
.staff .staff_list .staff_img img {
  margin: 0 auto;
}
.staff .staff_list .staff_content {
  flex-basis: 66%;
  padding-left: 20px;
  box-sizing: border-box;
  align-self: self-start;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_content {
    padding-left: 0;
  }
}
.staff .staff_list .staff_content .staff_position {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_content .staff_position {
    font-size: 20px;
    margin: 10px 0 0;
  }
}
.staff .staff_list .staff_content .staff_name {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin: 5px 0 10px;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_content .staff_name {
    font-size: 20px;
    margin: 10px 0;
  }
}
.staff .staff_list .staff_content .staff_comment {
  font-size: 12px;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .staff .staff_list .staff_content .staff_comment {
    font-size: 16px;
    font-weight: bold;
  }
}
.staff .pagenation {
  padding: 0 0 40px;
}
.staff .pagenation img {
  margin: 0 auto;
  width: 187px;
}

.tbl_price {
  width: 100%;
}
.tbl_price thead,
.tbl_price tbody {
  width: 100%;
}
.tbl_price tbody tr th {
  line-height: 1.2;
  background-color: #20a5eb;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .tbl_price tbody tr th {
    font-size: 20px;
  }
}
.tbl_price tbody tr th small {
  letter-spacing: 0;
  display: inline-block;
}
.tbl_price tbody tr td {
  padding: 10px;
  line-height: 1.2;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .tbl_price tbody tr td {
    font-size: 18px;
  }
}
.tbl_price tbody tr td small,
.tbl_price tbody tr td span {
  letter-spacing: 0;
  display: inline-block;
}
.tbl_price tbody tr td.price {
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .tbl_price tbody tr td.price {
    white-space: nowrap;
  }
}
.tbl_price tbody tr td.price span {
  display: inline-block;
}
.tbl_price tbody tr:nth-child(odd) td {
  background-color: #ebf7ff;
}
.tbl_price thead tr th {
  line-height: 1.2;
  background-color: #20a5eb;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .tbl_price thead tr th {
    font-size: 20px;
  }
}
.tbl_price thead tr th small {
  letter-spacing: 0;
  display: inline-block;
}

.tbl_base {
  width: 100%;
}
.tbl_base thead,
.tbl_base tbody {
  width: 100%;
}
.tbl_base tbody tr th {
  line-height: 1.2;
  background-color: #20a5eb;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .tbl_base tbody tr th {
    font-size: 14px;
    width: 100%;
    display: block;
  }
}
.tbl_base tbody tr th small {
  letter-spacing: 0;
  display: inline-block;
}
.tbl_base tbody tr td {
  padding: 10px;
  line-height: 2;
  width: 80%;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .tbl_base tbody tr td {
    font-size: 14px;
    width: 100%;
    display: block;
  }
}
.tbl_base tbody tr td small,
.tbl_base tbody tr td span {
  letter-spacing: 0;
  display: inline-block;
}
.tbl_base tbody tr:nth-child(odd) td {
  background-color: #ebf7ff;
}

.accordion {
  max-width: 965px;
  margin: 0 auto;
  padding: 0;
}
.accordion .accordion_title {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  margin: 0;
  backface-visibility: hidden;
  background-color: #fff;
}
.accordion .accordion_title.acc_title .acc_wrap {
  border: 2px solid #1d80e2;
  border-radius: 6px;
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
}
.accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(1) {
  color: #1d80e2;
  font-weight: bold;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  width: 80px;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 2px;
  margin-top: 5px;
  padding: 20px 5px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(1) {
    font-size: 22px;
    padding: 20px 10px;
  }
}
.accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(2) {
  flex-basis: 90%;
  border-left: 2px solid #1d80e2;
  height: 100%;
  display: block;
  padding: 20px 40px 20px 10px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  color: #1d80e2;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(2) {
    font-size: 22px;
    padding: 20px 100px 20px 30px;
  }
}
.accordion .accordion_title.acc_title::after {
  content: "▼";
  color: #fff;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 22px;
  right: 10px;
  transition: all 0.2s ease-in-out;
  width: 20px;
  height: 20px;
  background-color: rgba(29, 128, 226, 0.5);
  border-radius: 6px;
  display: grid;
  place-content: center;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_title.acc_title::after {
    width: 38px;
    height: 38px;
    font-size: 12px;
    top: 20px;
    right: 20px;
  }
}
.accordion .accordion_content {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.accordion .accordion_content.acc_content {
  margin-top: 10px;
  background-color: #fff;
}
.accordion .accordion_content.acc_content .acc_wrap {
  border: 2px solid #00cba2;
  border-radius: 6px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
}
.accordion .accordion_content.acc_content .acc_wrap > div {
  display: block;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(1) {
  color: #00cba2;
  font-weight: bold;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  width: 80px;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 2px;
  margin-top: 5px;
  padding: 20px 5px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(1) {
    font-size: 22px;
    padding: 20px 10px;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) {
  flex-basis: 90%;
  border-left: 2px solid #00cba2;
  height: 100%;
  display: block;
  padding: 20px 30px 20px 5px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  color: #606060;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) {
    line-height: 2;
    padding: 20px 60px 20px 30px;
    font-size: 17px;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) small {
  font-weight: normal;
  font-size: 14px;
  display: inline-block;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) strong {
  display: inline-block;
  color: #1d80e2;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) .number {
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.3;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) .notes {
  font-weight: normal;
  font-size: 17px;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) a {
  text-decoration: underline;
  color: #1d80e2;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) a.mailto {
  text-decoration: none;
}
.accordion .accordion_content.acc_content .acc_wrap > div:nth-of-type(2) a.mailto:hover {
  text-decoration: underline;
}
.accordion .accordion_content.acc_content .acc_wrap > div p {
  margin-bottom: 1em;
}
.accordion .accordion_content.acc_content .acc_wrap > div p:last-of-type {
  margin-bottom: 0;
}
.accordion .accordion_content.acc_content .acc_wrap > div .btn_detail {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 1em 0;
  display: block;
}
.accordion .accordion_content.acc_content .acc_wrap > div .btn_detail a {
  width: auto;
  box-sizing: border-box;
  padding: 9px 30px;
  border: 1px solid #1d80e2;
  background-color: #fff;
  color: #1d80e2;
  font-size: 12px;
  margin: 0 auto;
  text-decoration: none;
}
.accordion .accordion_content.acc_content .acc_wrap > div .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.accordion .accordion_content.acc_content .acc_wrap > div .btn_detail a:hover {
  text-decoration: none;
  background-color: #1d80e2;
  color: #fff;
}
.accordion .accordion_content.acc_content .acc_wrap > div .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div .btn_detail a {
    font-size: 17px;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div dl {
  text-align: center;
  margin: 1rem auto;
}
.accordion .accordion_content.acc_content .acc_wrap > div dl dt {
  font-size: 12px;
  color: #1d80e2;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div dl dt {
    font-size: 17px;
    letter-spacing: 0;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div dl dd iframe {
  max-width: 548px;
  width: 100%;
  margin: 0 auto;
}
.accordion .accordion_content.acc_content .acc_wrap > div .item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div .item {
    flex-direction: row;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div .item .item_column {
  flex-basis: 50%;
  padding: 10px;
}
.accordion .accordion_content.acc_content .acc_wrap > div .item .item_column h2 {
  font-size: 14px;
  font-weight: bold;
  color: #1d80e2;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .acc_wrap > div .item .item_column h2 {
    font-size: 17px;
  }
}
.accordion .accordion_content.acc_content .acc_wrap > div .item .item_column > div {
  margin-bottom: 1rem;
}
.accordion .accordion_content.acc_content .acc_wrap > div .item .item_column > div p {
  margin-bottom: 0;
}
.accordion .accordion_content.acc_content .icon_close {
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 0.2s ease-in-out;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 196, 146, 0.5);
  border-radius: 6px;
  display: grid;
  place-content: center;
  box-sizing: border-box;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .accordion .accordion_content.acc_content .icon_close {
    width: 38px;
    height: 38px;
    right: 20px;
  }
}
.accordion .accordion_content.acc_content .icon_close:hover {
  cursor: pointer;
}
.accordion .accordion_content.acc_content:hover::after {
  cursor: pointer;
}
.accordion .accordion_item {
  padding: 0 0 20px 0;
}
.accordion .accordion_item.is_open .accordion_content {
  max-height: 100%;
  animation: is_open 0.5s;
}
@keyframes is_open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tab_content {
  display: none;
}

.tab_content.show {
  display: block;
}

.recommend {
  margin: 0 auto;
  padding: 30px 10px;
}
.recommend .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.recommend .recommend_title {
  font-size: 16px;
  color: #1d80e2;
  text-align: center;
  padding: 10px 0;
}
.recommend .recommend_title span {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_title span {
    font-size: 21px;
  }
}
.recommend .recommend_list {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
.recommend .recommend_list li .recommend_wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  border: 1px solid #1d80e2;
  background-color: #fff;
  box-sizing: border-box;
  padding: 14px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap {
    flex-direction: row;
  }
}
.recommend .recommend_list li .recommend_wrap .recommend_img {
  margin-bottom: 10px;
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap .recommend_img {
    margin-bottom: 0;
  }
}
.recommend .recommend_list li .recommend_wrap .recommend_img img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap .recommend_img img {
    margin: 0;
  }
}
.recommend .recommend_list li .recommend_wrap .recommend_content {
  flex-basis: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
}
.recommend .recommend_list li .recommend_wrap .recommend_content .btn_detail {
  margin: auto auto 0;
}
.recommend .recommend_list li .recommend_wrap .recommend_name {
  color: #20a5eb;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.1;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap .recommend_name {
    font-size: 21px;
  }
}
.recommend .recommend_list li .recommend_wrap .recommend_price {
  color: #ff322e;
  font-weight: bold;
  font-size: 21px;
  line-height: 1.1;
  margin-top: auto;
  margin-bottom: 10px;
}
.recommend .recommend_list li .recommend_wrap .recommend_price span {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap .recommend_price {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.recommend .recommend_list li .recommend_wrap small {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.recommend .recommend_list li .recommend_wrap .btn_detail {
  margin-top: auto;
}
.recommend .recommend_list li .recommend_wrap.opt_emergency {
  border: 1px solid #ff322e;
}
.recommend .recommend_list li .recommend_wrap.opt_emergency .recommend_name {
  background-color: #ff322e;
  color: #fff;
  padding: 6px 20px 7px 20px;
  position: relative;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_img {
  position: relative;
}
.recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_img .recommend_icn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 54px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_img .recommend_icn {
    width: 98px;
  }
}
.recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_name {
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 auto 5px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_name {
    font-size: 28px;
    height: 100%;
  }
}
.recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_price {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .recommend .recommend_list li .recommend_wrap.opt_recommend .recommend_price {
    margin-bottom: 30px;
  }
}

.favorite_button {
  display: block;
  text-align: center;
}

button.favorite_button_in {
  cursor: pointer;
  background: transparent;
  border: 1px solid #1d80e2;
  padding: 7px 10px;
  margin: 0 auto;
  border-radius: 6px;
  width: 230px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #1d80e2;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  button.favorite_button_in {
    margin-left: auto;
    margin-right: 0;
  }
}
button.favorite_button_in::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url(../images/public/icn_heart-gray.svg);
  background-size: cover;
  vertical-align: middle;
  margin: 0 auto 0 5px;
}
button.favorite_button_in:hover {
  border: 1px solid #1d80e2;
}
button.favorite_button_in:hover::after {
  background-image: url(../images/public/icn_heart.svg);
}

button.favorite_button_in p {
  display: inline-block;
  margin: 0;
}

button.favorite_button_in:hover {
  opacity: 0.8;
}

.is-choosen .favorite_button_in {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .is-choosen .favorite_button_in {
    margin-top: 0;
  }
}
.is-choosen .favorite_button_in::after {
  background-image: url(../images/public/icn_heart.svg);
}

.is-choosen .favorite_button_in span {
  position: relative;
}

.is-choosen .favorite_button_in span:before {
  content: "お気に入り登録済";
  display: inline-block;
  position: absolute;
  color: #313131;
  top: -24px;
  left: 0;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .is-choosen .favorite_button_in span:before {
    top: -24px;
    left: 0;
  }
}

ul#favItemListStyle {
  border: none;
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
}

ul#favItemListStyle li {
  width: 100%;
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 2px;
  background: #fff;
  transition: 0.2s ease-in-out;
  padding: 20px 0;
  position: relative;
  align-items: center;
  text-decoration: none;
  border-top: solid 1px #eee;
  padding-right: 10px;
}

ul#favItemListStyle li:last-child {
  border-bottom: solid 1px #eee;
}

.favItemListLeft {
  width: 35%;
  margin-right: 3%;
}

.favItemListRight {
  width: 62%;
}

time.favItemList.dfont {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

time.favItemList.dfont:before {
  content: "\f017";
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
  opacity: 0.6;
  font-weight: 900;
}

p.favItemListtitle {
  font-size: 1.1rem;
  line-height: 1.56;
  margin: 0;
  color: #313131;
  margin-bottom: 15px;
}

a.favItemLink {
  display: inline-block;
  padding: 6px 8px 6px 12px;
  border: 1px solid #1d80e2;
  cursor: pointer;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  background: #1d80e2;
  text-decoration: none;
  position: relative;
  color: #fff;
  font-size: 12px;
  list-style: 1.3;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  a.favItemLink {
    font-size: 16px;
    padding: 6px 16px 6px 23px;
  }
}

a.favItemLink:after {
  padding-left: 4px;
  color: #fff;
  content: "";
  background-image: url(../images/public/icn_heart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 13px;
  height: 12px;
  vertical-align: middle;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  a.favItemLink:after {
    padding-left: 8px;
    margin-top: 0;
  }
}

a.favItemLink:hover {
  background: #ebf7ff;
  color: #1d80e2;
  border: 1px solid #1d80e2;
}

/* ボタン */
.favItemListRightBottom .favoriteList_button {
  display: inline-block;
}

button.favItemBtn {
  display: inline-block;
  padding: 8px 20px 8px 18px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  background: #ebf7ff;
  border: 1px solid #1d80e2;
  border-radius: 50px;
  color: #1d80e2;
}

button.favItemBtn small {
  display: inline-block;
  margin: 0;
}

button.favItemBtn:hover {
  background: #1d80e2;
  color: #fff;
}

button.favItemBtn i {
  font-size: 1.2rem;
  vertical-align: -1px;
  margin-right: 5px;
}

button.favItemBtn.favItemDelete {
  pointer-events: none;
  background: #fcfcfc;
  color: #313131;
}

button.favItemBtn.favItemDelete p {
  font-size: 0;
}

button.favItemBtn.favItemDelete i {
  opacity: 0.3;
  color: #6bb6ff;
}

button.favItemBtn.favItemDelete p:after {
  content: "登録を解除しました";
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  /* （ここにモバイル用スタイルを記述） */
  ul#favItemListStyle li {
    flex-direction: column;
    padding: 20px 15px;
  }
  .favItemListLeft,
  .favItemListRight {
    width: 100%;
    margin: 0;
  }
  .favItemListLeft {
    margin-bottom: 10px;
  }
  .favItemListRightBottom {
    flex-direction: column;
    justify-content: center;
  }
  a.favItemLink,
  button.favItemBtn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  a.favItemLink {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .favItemListRightBottom .favorite_button {
    display: block;
    width: 100%;
  }
  button.favItemBtn {
    padding-top: 12px;
    padding-bottom: 13px;
    display: block;
  }
}
.the_content {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .the_content {
    padding: 4em 0;
  }
}
.the_content .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1026px;
}

.result_keywords_title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .result_keywords_title {
    font-size: 24px;
  }
}
.result_keywords_list {
  text-align: center;
  margin-bottom: 2rem;
}

/* swiper */
.homeSwiper {
  --add-bottom: 40px;
  padding-bottom: var(--add-bottom);
}
.homeSwiper .swiper-slide {
  width: 375px;
}
@media screen and (min-width: 768px) {
  .homeSwiper .swiper-slide {
    width: 1026px;
  }
}
.homeSwiper [class^=swiper-button-] {
  top: calc(50% - var(--add-bottom) / 2);
}
.homeSwiper [class^=swiper-button-] {
  width: 10%;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #afafaf;
}

.work .local_nav {
  background-color: #fff;
}
.work .local_nav ul {
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.work .local_nav ul li a {
  background-color: #fff;
  border: 1px solid #20a5eb;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #20a5eb;
  padding: 9px 10px 9px 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -1px;
  width: 120px;
  display: block;
}
@media screen and (min-width: 768px) {
  .work .local_nav ul li a {
    padding: 15px 20px 15px 20px;
    font-size: 14px;
    letter-spacing: 0;
    width: 180px;
  }
}
.work .local_nav ul li a:hover {
  background-color: #20a5eb;
  color: #fff;
}
.work .work_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .work .work_list ul {
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1026px) {
  .work .work_list ul {
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
  }
}
.work .work_list ul li {
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .work .work_list ul li {
    flex-basis: 20%;
  }
}
.work .work_list ul li .content {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #1d80e2;
  background-color: #fff;
  padding: 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.work .work_list ul li .content img {
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .work .work_list ul li .content img {
    margin: 0 auto;
  }
}
.work .work_list ul li .content figcaption {
  color: #20a5eb;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.5;
  margin: 10px auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work .work_list ul li .content figcaption {
    font-size: 14px;
  }
}
.work .work_list ul li .content figcaption span {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  display: block;
  margin: 0 auto;
  color: #4d4d4d;
  font-weight: normal;
  padding: 5px 0;
}
.work .work_list ul li .content .btn_detail {
  width: 100%;
  margin-top: auto;
}
.work .work_list ul li .content .btn_detail a {
  margin: 0 auto;
}

.voice .local_nav {
  background-color: #fff;
  padding: 0 10px;
}
.voice .local_nav ul {
  margin: 0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.voice .local_nav ul li a {
  background-color: #fff;
  border: 1px solid #20a5eb;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 30px;
  color: #20a5eb;
  padding: 9px 10px 9px 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -1px;
  width: 120px;
  display: block;
}
@media screen and (min-width: 768px) {
  .voice .local_nav ul li a {
    padding: 15px 20px 15px 20px;
    font-size: 14px;
    letter-spacing: 0;
    width: 180px;
  }
}
.voice .local_nav ul li a:hover {
  background-color: #20a5eb;
  color: #fff;
}
.voice .voice_list ul {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .voice .voice_list ul {
    justify-content: center;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1026px) {
  .voice .voice_list ul {
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
  }
}
.voice .voice_list ul li {
  height: 100%;
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .voice .voice_list ul li {
    flex-basis: 20%;
  }
}
.voice .voice_list ul li .content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border: 1px solid #1d80e2;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.voice .voice_list ul li .content img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .voice .voice_list ul li .content img {
    margin: 0;
  }
}
.voice .voice_list ul li .content figcaption {
  color: #20a5eb;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px auto;
  text-align: center;
}
.voice .voice_list ul li .content figcaption span {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  display: block;
  margin: 0 auto;
  color: #4d4d4d;
  font-weight: normal;
  padding: 5px 0;
}
.voice .voice_list ul li .content .btn_detail {
  width: 100%;
  margin-top: auto;
}
.voice .voice_list ul li .content .btn_detail a {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .present .present_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
}
.present .present_list img {
  margin: 0 auto;
}
.present li {
  margin-bottom: 10px;
}

.generalInfo {
  margin: 0 auto;
  padding: 30px 10px;
  background-color: #ebf7ff;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .generalInfo {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
.generalInfo .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.generalInfo .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .generalInfo .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.generalInfo .section_title br {
  display: block;
}
@media screen and (min-width: 768px) {
  .generalInfo .section_title br {
    display: none;
  }
}
.generalInfo .generalInfo_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
@media screen and (min-width: 768px) {
  .generalInfo .generalInfo_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.generalInfo .generalInfo_list .generalInfo_wrap {
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #20a5eb;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.generalInfo .generalInfo_list .generalInfo_wrap .generalInfo_img {
  width: 100%;
  margin-top: auto;
  margin-bottom: 20px;
}
.generalInfo .generalInfo_list .generalInfo_wrap .generalInfo_img img {
  margin: 0 auto;
}
.generalInfo .content_title {
  font-size: 20px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .generalInfo .content_title {
    font-size: 24px;
  }
}

.bnr_side {
  display: none;
}
.bnr_side a img,
.bnr_side .bnr_close {
  opacity: 1;
  transition: all 0.2s ease-out;
}
.bnr_side a:hover img,
.bnr_side .bnr_close:hover {
  opacity: 0.8;
}
.bnr_side.bnr_open {
  display: block;
  z-index: 4;
  position: fixed;
  right: 0;
  top: 68%;
}
.bnr_side .bnr_content {
  width: 203px;
}
@media screen and (min-width: 768px) {
  .bnr_side .bnr_content {
    width: 354px;
  }
}
.bnr_side .bnr_content img {
  width: 354px;
}
.bnr_side .bnr_content .bnr_close {
  margin: 0 auto 0 10px;
  cursor: pointer;
  width: 99px;
}

.bnr_bottom {
  background-color: #1d80e2;
  z-index: 4;
  position: fixed;
  width: 100%;
  bottom: 0;
}
.bnr_bottom a img,
.bnr_bottom .bnr_close {
  opacity: 1;
  transition: all 0.2s ease-out;
}
.bnr_bottom a:hover img,
.bnr_bottom .bnr_close:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .bnr_bottom {
    display: none;
  }
}
.bnr_bottom > p {
  padding: 5px 10px;
  margin: 0 auto;
}
.bnr_bottom > p img {
  margin: 0 auto;
}
.bnr_bottom .bnr_list {
  padding: 0 10px;
  margin-bottom: 7px;
  width: 100%;
  height: 59px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3px 3px;
}
.bnr_bottom .bnr_list .bnr01 {
  width: 237px;
}
.bnr_bottom .bnr_list .bnr01 img {
  width: 237px;
}
.bnr_bottom .bnr_list .bnr02 {
  width: 59px;
}
.bnr_bottom .bnr_list .bnr02 img {
  width: 59px;
}
.bnr_bottom .bnr_list .bnr03 {
  width: 59px;
}
.bnr_bottom .bnr_list .bnr03 img {
  width: 59px;
}

.page_nav {
  background-color: #20a5eb;
}
.page_nav ul {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page_nav ul li {
  min-width: 106px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .page_nav ul li {
    padding: 0 10px;
    min-width: 190px;
    font-size: 14px;
    letter-spacing: 0;
  }
}

.bottom_nav .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 767px;
}
.bottom_nav .page_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .bottom_nav .page_nav {
    flex-direction: row;
  }
}
.bottom_nav .page_back {
  margin-bottom: 30px;
}
.bottom_nav .btn_detail-lg {
  margin: 10px auto;
}
.bottom_nav .page-numbers {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.bottom_nav .page-numbers li {
  background-color: #fff;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: grid;
  place-content: center;
  font-weight: bold;
  font-size: 16px;
  padding: 20px;
}
.bottom_nav .page-numbers li a {
  display: grid;
  place-content: center;
  height: 40px;
  width: 40px;
  color: #1d80e2;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}
.bottom_nav .next.page-numbers,
.bottom_nav .prev.page-numbers {
  font-size: 12px;
}
.bottom_nav .page_number_title {
  text-align: center;
  line-height: 2;
  font-size: 18px;
  font-weight: bold;
  color: #1d80e2;
  padding: 10px;
}
.bottom_nav .page_back p:not(:last-child) {
  margin-bottom: 2rem !important;
}

.detail_nav {
  padding: 0 10px 30px;
}
.detail_nav .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 767px;
}
.detail_nav .page_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .detail_nav .page_nav {
    flex-direction: row;
  }
}
.detail_nav .btn_detail-lg {
  margin: 10px auto;
}

.cms_field .block {
  margin-bottom: 30px;
}
.cms_field h3 {
  color: #1f94e7;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cms_field h3 {
    font-size: 24px;
  }
}
.cms_field h4 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cms_field h4 {
    font-size: 20px;
  }
}
.cms_field p {
  font-size: 16px;
  margin-bottom: 1em;
}
.cms_field .small,
.cms_field small {
  font-size: 12px;
}
.cms_field strong {
  font-weight: bold;
}
.cms_field .link {
  color: #20a5eb;
  text-decoration: underline;
  display: inline;
  transition: 0.2s ease-out;
}
.cms_field .link:hover {
  text-decoration: underline;
}
.cms_field img {
  width: auto;
}
.cms_field .red {
  color: red;
}
.cms_field .bold {
  font-weight: bold;
}

/* .header */
.header {
  display: block;
}
.header .modal {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .modal {
    display: block;
  }
}
.header .modal.active {
  display: block;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .header .modal.active {
    display: none;
  }
}
.header .modal.active .modalContent {
  width: 96%;
  height: 96%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.header .modal .modalContent .modalContent-top {
  display: none;
}
.header .modal.active .modalContent .modalContent-top {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  padding: 6px 6px 6px 0;
  box-sizing: border-box;
}
.header .modal.active .modalContent .modalContent-top .text_title {
  white-space: nowrap;
  margin-right: auto;
  color: #20a5eb;
  font-size: 16px;
  padding-left: 10px;
}
.header .modal.active .modalContent .modalContent-top .btn_favorite {
  width: 160px;
}
.header .modal.active .modalContent .modalContent-top .btn_favorite a {
  border: 1px solid #20a5eb;
  color: #20a5eb;
  font-weight: bold;
  letter-spacing: 1.4px;
  border-radius: 6px;
  display: block;
  line-height: 23px;
  white-space: nowrap;
  padding: 0 12px 0 21px;
}
.header .modal.active .modalContent .modalContent-top .btn_favorite a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background-image: url(../images/public/icn_heart.svg);
  background-size: cover;
  vertical-align: middle;
  margin: -2px 0 0 7px;
}
.header .modal.active .modalContent .modalContent-top .btn_favorite a:hover {
  color: #fff;
  background-color: #20a5eb;
}
@media screen and (min-width: 768px) {
  .header #closeModalButton {
    display: none;
  }
}
.header .modal.active #closeModalButton {
  display: block;
}
.header .modal.active .btn_close {
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #20a5eb;
  width: 38px;
  height: 38px;
}
.header .modal.active .btn_close::before, .header .modal.active .btn_close::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #fff;
}
.header .modal.active .btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .modal.active .btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header_nav-sp {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  height: 60px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header_nav-sp {
    position: static;
    height: auto;
  }
}
.header_top {
  padding: 3px 5px;
}
@media screen and (min-width: 768px) {
  .header_top {
    padding: 3px 10px;
  }
}
.header_top .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.header_top .text_lead {
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header_top .text_lead {
    width: auto;
    text-align: left;
    font-size: 12px;
    align-items: center;
  }
}
.header_top .btn_favorite {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_top .btn_favorite {
    display: block;
  }
  .header_top .btn_favorite a {
    border: 1px solid #20a5eb;
    color: #20a5eb;
    font-weight: bold;
    letter-spacing: 1.4px;
    border-radius: 6px;
    display: block;
    line-height: 23px;
    white-space: nowrap;
    padding: 0 12px 0 21px;
  }
  .header_top .btn_favorite a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url(../images/public/icn_heart.svg);
    background-size: cover;
    vertical-align: middle;
    margin: -2px 0 0 7px;
  }
  .header_top .btn_favorite a:hover {
    color: #fff;
    background-color: #20a5eb;
  }
}
.header_body {
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .header_body {
    padding: 0 10px;
  }
}
.header_body .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .header_body .container {
    justify-content: space-between;
  }
}
@media screen and (min-width: 900px) {
  .header_body .container {
    gap: 7px;
    padding: 0;
  }
}
.header_body .logo {
  width: 140px;
  margin-right: auto;
}
@media screen and (min-width: 400px) {
  .header_body .logo {
    width: 200px;
  }
}
@media screen and (min-width: 480px) {
  .header_body .logo {
    width: 240px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .logo {
    width: 350px;
  }
}
.header_body .logo span {
  display: grid;
  place-items: center;
}
.header_body .logo span img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .header_body .logo span {
    margin-right: 21px;
  }
}
.header_body .btn_area {
  flex-basis: 20%;
}
@media screen and (min-width: 930px) {
  .header_body .btn_area {
    flex-basis: auto;
  }
}
.header_body .btn_area a {
  display: grid;
  place-content: center;
  position: relative;
  border: 1px solid #20a5eb;
  border-radius: 6px;
  color: #20a5eb;
  text-align: center;
  font-weight: bold;
  font-size: 9px;
  padding: 0 1px;
  height: 39px;
  width: 100%;
  line-height: 1.2;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .header_body .btn_area a {
    height: 65px;
    padding: 0 3px 10px;
    font-size: 12px;
  }
}
.header_body .btn_area a span {
  display: inline-block;
  white-space: nowrap;
}
.header_body .btn_area a span.txt-bold {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .header_body .btn_area a span.txt-bold {
    font-size: 16px;
  }
}
.header_body .btn_area a span.small {
  font-size: 9px;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .header_body .btn_area a span.small {
    font-size: 10px;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_area a span.small {
    font-size: 11px;
  }
}
.header_body .btn_area a::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_body .btn_area a::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    width: 11px;
    height: 6px;
    background-image: url(../images/public/icn_triangleDown-blue.svg);
    background-size: cover;
    vertical-align: middle;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_area a {
    font-size: 15px;
    padding: 0 7px 10px;
    width: 153px;
  }
}
.header_body .btn_area a:hover {
  color: #fff;
  background-color: #20a5eb;
}
.header_body .btn_area a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.header_body .btn_estimate {
  flex-basis: 20%;
}
@media screen and (min-width: 930px) {
  .header_body .btn_estimate {
    flex-basis: auto;
  }
}
.header_body .btn_estimate a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  flex-direction: column;
  border: 1px solid #20a5eb;
  border-radius: 6px;
  color: #20a5eb;
  font-weight: bold;
  text-align: center;
  padding: 0 1px;
  width: 100%;
  height: 39px;
  line-height: 1.2;
  box-sizing: border-box;
}
@media screen and (min-width: 480px) {
  .header_body .btn_estimate a {
    flex-direction: row;
    padding: 0 3px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_estimate a {
    height: 65px;
    padding: 0 3px 10px;
  }
}
.header_body .btn_estimate a span {
  display: block;
  white-space: nowrap;
}
.header_body .btn_estimate a span.txt-medium {
  font-size: 8px;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .header_body .btn_estimate a span.txt-medium {
    font-size: 12px;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_estimate a span.txt-medium {
    font-size: 14px;
  }
}
.header_body .btn_estimate a span.txt-bold {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .header_body .btn_estimate a span.txt-bold {
    font-size: 16px;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_estimate a span.txt-bold {
    font-size: 19px;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_estimate a {
    font-size: 15px;
    padding: 0 7px 10px;
    width: 153px;
  }
}
.header_body .btn_estimate a::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_body .btn_estimate a::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    width: 11px;
    height: 6px;
    background-image: url(../images/public/icn_triangleDown-blue.svg);
    background-size: cover;
    vertical-align: middle;
  }
}
.header_body .btn_estimate a .free {
  border-radius: 6px;
  background-color: #ffe6e6;
  display: grid;
  place-items: center;
  color: #ff322e;
  font-size: 9px;
  width: 40px;
  line-height: 1;
  padding: 0;
  border: 1px solid #ffe6e6;
}
@media screen and (min-width: 480px) {
  .header_body .btn_estimate a .free {
    border-radius: 50px;
    font-size: 12px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_estimate a .free {
    border-radius: 50px;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: 3px;
  }
}
@media screen and (min-width: 930px) {
  .header_body .btn_estimate a .free {
    font-size: 19px;
    width: 47px;
    height: 47px;
    line-height: 47px;
  }
}
.header_body .btn_estimate a:hover {
  color: #fff;
  background-color: #20a5eb;
}
.header_body .btn_estimate a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.header_body .btn_estimate a:hover .free {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.header_body .btn_freeDial {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial {
    display: block;
    flex-basis: 25%;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial {
    flex-basis: auto;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial a {
    padding: 0 5px;
    border-radius: 6px;
    background-color: #ff322e;
    border: 1px solid #ff322e;
    height: 65px;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial a {
    max-width: 270px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial a .icn-freeDial {
    width: 100%;
    text-align: justify;
    position: relative;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 24px;
    padding: 4px 0 2px 40px;
    box-sizing: border-box;
    line-height: 1;
  }
  .header_body .btn_freeDial a .icn-freeDial::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 5px;
    right: 0;
    margin: 0;
    display: inline-block;
    width: 28px;
    height: 16px;
    background-image: url(../images/public/icn_freeDial.svg);
    background-size: cover;
    vertical-align: middle;
    letter-spacing: 3.6px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial a .icn-freeDial::before {
    width: 28px;
    height: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial a .icn-freeDial {
    font-size: 30px;
    padding: 4px 10px 2px 40px;
    box-sizing: border-box;
    line-height: 1;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial a span {
    display: inline-block;
    white-space: nowrap;
  }
  .header_body .btn_freeDial a span.txt-medium {
    font-weight: 700;
    font-size: 9px;
    color: fff;
    line-height: 14px;
    letter-spacing: 0.5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial a span.txt-medium {
    font-size: 11px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial a span.txt-bold {
    font-weight: 700;
    font-size: 9px;
    line-height: 14px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_freeDial a span.txt-bold {
    font-size: 11px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_freeDial a:hover {
    background-color: transparent;
    color: #ff322e;
  }
  .header_body .btn_freeDial a:hover .icn-freeDial {
    color: #ff322e;
  }
  .header_body .btn_freeDial a:hover .icn-freeDial::before {
    background-image: url(../images/public/icn_freeDial-red.svg);
  }
}
.header_body .btn_email {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_body .btn_email {
    display: block;
  }
  .header_body .btn_email a {
    padding: 0;
    border-radius: 6px;
    background-color: #00cba2;
    border: 1px solid #00cba2;
    max-width: 81px;
    width: 100%;
    height: 65px;
    color: #fff;
    line-height: 1;
    display: grid;
    place-content: center;
  }
  .header_body .btn_email a .icn-email {
    width: 31px;
    margin: 0 auto 3px;
  }
  .header_body .btn_email a span {
    display: inline-block;
    white-space: nowrap;
  }
  .header_body .btn_email a span.icn-email {
    background: url(../images/public/icn_email.svg) no-repeat;
    background-position: center;
    width: 24px;
    height: 17px;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_email a span.icn-email {
    width: 31px;
    height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_email a span.txt-bold {
    font-weight: 500;
    font-size: 12px;
    color: fff;
    line-height: 1;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_email a span.txt-bold {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_email a span.txt-medium {
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .header_body .btn_email a span.txt-medium {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .header_body .btn_email a:hover {
    background-color: transparent;
    color: #00cba2;
  }
  .header_body .btn_email a:hover span.icn-email {
    background: url(../images/public/icn_email-green.svg) no-repeat;
  }
}
.header_body .btn_open {
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #20a5eb;
  width: 39px;
  height: 39px;
  padding: 0;
  margin: 0;
}
.header_body .btn_open::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #fff;
  font-size: 8px;
  white-space: nowrap;
  letter-spacing: -1px;
  text-align: center;
}
.header_body .btn_open[data-type=menu]::after {
  content: "メニュー";
}
.header_body .btn_open span {
  height: 1px;
  width: 21px;
  display: block;
}
.header_body .btn_open span:nth-of-type(1) {
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 5px;
}
.header_body .btn_open span:nth-of-type(2) {
  position: absolute;
  top: 12px;
  height: 3px;
  background-color: #fff;
}
.header_body .btn_open span:nth-of-type(3) {
  position: absolute;
  top: 19px;
  height: 3px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header_body .btn_open {
    display: none;
  }
}
.header_item {
  padding: 8px 10px;
  background-color: #14c8ff;
}
@media screen and (min-width: 768px) {
  .header_item {
    margin-top: 8px;
  }
}
.header_item .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.header_item .item_list li a {
  width: 95px;
  height: 95px;
  line-height: 1;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .header_item .item_list li a {
    width: 75px;
    height: 75px;
    line-height: 1;
    border-radius: 50%;
  }
}
@media screen and (min-width: 820px) {
  .header_item .item_list li a {
    width: 80px;
    height: 80px;
    line-height: 1;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .header_item .item_list li a {
    width: 105px;
    height: 105px;
    line-height: 1;
    border-radius: 50%;
  }
}
.header_menu {
  padding: 15px 10px;
  background-color: #21a6ec;
}
.header_menu .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.header_menu .container .menu_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list {
    flex-direction: row;
    border-top: none;
  }
}
.header_menu .container .menu_list li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #fff;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li a {
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #fff;
    width: 100px;
    height: 47px;
    padding: 2px 13px 10px;
    letter-spacing: -1px;
    color: #606060;
    font-size: 14px;
    font-weight: bold;
    align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .header_menu .container .menu_list li a {
    letter-spacing: 0;
    width: 125px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .header_menu .container .menu_list li a {
    letter-spacing: 0;
    width: 150px;
  }
}
.header_menu .container .menu_list li a span {
  display: inline-block;
  white-space: nowrap;
}
.header_menu .container .menu_list li a::after {
  content: "";
  position: absolute;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 16px;
  height: 8px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  background-size: cover;
  vertical-align: middle;
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li a::after {
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    width: 11px;
    height: 6px;
    background-image: url(../images/public/icn_triangleDown-blue.svg);
    background-size: cover;
    vertical-align: middle;
    transform: rotate(0);
  }
}
@media screen and (min-width: 820px) {
  .header_menu .container .menu_list li a::after {
    bottom: 7px;
  }
}
.header_menu .container .menu_list li a:hover {
  background-color: #1f94e7;
  color: #fff;
}
.header_menu .container .menu_list li a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
  background-size: cover;
}
.header_menu .container .menu_list li a:hover {
  color: #fff;
  background-color: #14c8ff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li a:hover {
    border: 1px solid #14c8ff;
  }
}
.header_menu .container .menu_list li.menu_support a {
  background-color: #ff322e;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a {
    width: 220px;
    height: 47px;
    border: 1px solid #fff;
    justify-content: center;
  }
}
.header_menu .container .menu_list li.menu_support a span.menu_txt-left {
  font-size: 18px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a span.menu_txt-left {
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
    padding: 0;
  }
}
@media screen and (min-width: 1000px) {
  .header_menu .container .menu_list li.menu_support a span.menu_txt-left {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.header_menu .container .menu_list li.menu_support a span.menu_img img {
  margin-bottom: -10px;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a span.menu_img img {
    margin-bottom: 0;
  }
}
.header_menu .container .menu_list li.menu_support a span.menu_txt-right {
  text-align: center;
  line-height: 1.1;
  font-weight: 500;
  font-size: 14px;
  margin-right: 40px;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a span.menu_txt-right {
    font-size: 12px;
    margin-right: 0;
  }
}
.header_menu .container .menu_list li.menu_support a span.menu_txt-right strong {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a span.menu_txt-right strong {
    font-size: 14px;
  }
}
.header_menu .container .menu_list li.menu_support a::after {
  content: "";
  position: absolute;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 16px;
  height: 8px;
  background-image: url(../images/public/icn_triangleDown-white.svg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a::after {
    bottom: 7px;
    left: 40px;
    margin: 0;
    display: inline-block;
    width: 11px;
    height: 6px;
    background-image: url(../images/public/icn_triangleDown-white.svg);
    background-size: cover;
    vertical-align: middle;
  }
}
.header_menu .container .menu_list li.menu_support a:hover {
  color: #ff322e;
  background-color: #fff;
  border-top: 1px solid #ff322e;
  border-bottom: 1px solid #ff322e;
}
@media screen and (min-width: 768px) {
  .header_menu .container .menu_list li.menu_support a:hover {
    border: 1px solid #ff322e;
  }
}
.header_menu .container .menu_list li.menu_support a:hover::after {
  background-image: url(../images/public/icn_triangleDown-red.svg);
}

/* footer */
.footer {
  padding: 0 10px;
  background-color: #20a5eb;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    font-size: 14px;
  }
}
@media screen and (min-width: 800px) {
  .footer {
    font-size: 15px;
  }
}
.footer a {
  color: #fff;
  opacity: 1;
  transition: 1s;
}
.footer a:hover {
  opacity: 0.8;
}
.footer .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  gap: 2%;
}
@media screen and (min-width: 768px) {
  .footer .container {
    flex-direction: row;
  }
}
.footer .container div {
  margin-top: 30px;
}
.footer .container div:nth-of-type(1) {
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .footer .container div:nth-of-type(1) {
    flex-basis: 25%;
  }
}
.footer .container div:nth-of-type(2) {
  flex-basis: 48%;
}
@media screen and (min-width: 768px) {
  .footer .container div:nth-of-type(2) {
    flex-basis: 39%;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .container div:nth-of-type(2) .parent:nth-of-type(1) {
    flex-basis: 40%;
  }
  .footer .container div:nth-of-type(2) .parent:nth-of-type(2) {
    flex-basis: 60%;
  }
}
.footer .container div:nth-of-type(3) {
  flex-basis: 100%;
  order: -1;
}
@media screen and (min-width: 768px) {
  .footer .container div:nth-of-type(3) {
    flex-basis: 32%;
    order: 0;
  }
}
.footer .container div .parent li .child {
  margin-left: 1em;
}
.footer .bnr {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
}
.footer .bnr .bnr_01 {
  flex-basis: 100%;
}
.footer .bnr .bnr_02 {
  flex-basis: 45.25%;
}
.footer .bnr .bnr_03 {
  flex-basis: 33.25%;
}
.footer .bnr .bnr_04 {
  flex-basis: 17.5%;
}
.footer .bnr .bnr_05 {
  flex-basis: 49%;
}
.footer .bnr .bnr_06 {
  flex-basis: 49%;
}
.footer .bnr .bnr_07 {
  flex-basis: 100%;
}
.footer .bnr .bnr_07 img {
  width: 100%;
}
.footer .copyright {
  font-weight: normal;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.footer .copyright img {
  width: 50%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .footer .copyright img {
    width: 40%;
    margin: 0 auto 40px;
  }
}
.footer .copyright small {
  margin: auto;
  padding: 10px 0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .copyright small {
    margin: 0;
  }
}

/* home */
.home a img {
  opacity: 1;
  transition: 0.2s ease-out;
}
.home a img:hover img {
  opacity: 0.8;
}
.home .home01 {
  margin: 0 auto;
  padding: 0 10px 60px;
}
.home .home01 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.home .home01 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home01 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home01 .service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
.home .home01 .service_list div {
  flex-basis: 50%;
  display: grid;
  place-content: center;
}
.home .home01 .bnr01,
.home .home01 .bnr02 {
  margin-top: 20px;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .home .home01 .bnr01,
  .home .home01 .bnr02 {
    margin-top: 40px;
  }
}
.home .home02 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home .home02 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home04 {
  margin: 0 auto;
  padding: 30px 10px;
}
.home .home04 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ebf7ff;
  border-radius: 10px;
  padding: 30px 10px 10px 10px;
}
@media screen and (min-width: 768px) {
  .home .home04 .container {
    padding: 30px;
  }
}
.home .home04 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home04 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home04 .content {
  text-align: center;
  display: grid;
  place-content: center;
}
.home .home04 .content .content_title {
  font-size: 13px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .home .home04 .content .content_title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .home .home04 .content .content_title {
    font-size: 17px;
  }
}
.home .home04 .content .content_img-flow {
  margin-bottom: 40px;
  width: 100%;
}
.home .home04 .content .content_video {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .home .home04 .content .content_video {
    padding: 0;
  }
}
.home .home04 .content .content_video figure {
  margin: 0;
  padding: 10px;
  background-color: #fff;
}
.home .home04 .content .content_video figure figcaption {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 500;
  color: #20a5eb;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .home .home04 .content .content_video figure figcaption {
    font-size: 17px;
  }
}
.home .home04 .content .content_video figure figcaption small {
  display: block;
  color: #606060;
  font-size: 10px;
  letter-spacing: -1px;
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home04 .content .content_video figure figcaption small {
    font-size: 13px;
  }
}
.home .home04 .content .btn_detail-lg a {
  width: 100%;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
}
.home .home05 {
  margin: 0 auto;
  padding: 30px 10px;
}
.home .home05 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.home .home05 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home05 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home05 article .content .content_txt {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .home .home05 article .content .content_txt {
    font-size: 1em;
  }
}
.home .home06 {
  margin: 0 auto;
  padding: 30px 10px;
}
.home .home06 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.home .home06 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home06 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home06 .content_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home06 .content_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home06 .content_txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #606060;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .home .home06 .content_txt {
    font-size: 14px;
  }
}
.home .home06 .content_txt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .home .home06 .content_txt br {
    display: block;
  }
}
.home .home07 {
  margin: 0 auto;
  padding: 30px 10px;
}
.home .home07 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ebf7ff;
  border-radius: 6px;
  padding: 30px 10px;
}
.home .home07 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home07 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home07 .content_title {
  font-size: 20px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  padding: 0;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .home .home07 .content_title {
    font-size: 24px;
  }
}
.home .home08 {
  margin: 0 auto;
  padding: 30px 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .home .home08 {
    margin-bottom: 40px;
  }
}
.home .home08 .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.home .home08 .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home08 .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home08 .content_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .home .home08 .content_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.home .home08 .content_txt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #20a5eb;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .home .home08 .content_txt {
    text-align: center;
    font-size: 20px;
  }
}
.home .home08 .content_txt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .home .home08 .content_txt br {
    display: block;
  }
}

/* / home */
/* page_products */
.page_products {
  /* / page_products */
}
.page_products a img {
  opacity: 1;
  transition: 0.2s ease-out;
}
.page_products a img:hover img {
  opacity: 0.8;
}
.page_products .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .page_products .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_products .products .container {
  padding: 0;
}
.page_products .products .result {
  padding: 60px 10px;
  background-color: #ebf7ff;
}
.page_products .products .result .result_title {
  color: #20a5eb;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_title {
    font-size: 21px;
  }
}
.page_products .products .result .result_list {
  margin: 0 auto;
  max-width: 1026px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1026px) {
  .page_products .products .result .result_list {
    gap: 20px 20px;
  }
}
.page_products .products .result .result_list > li .content_wrap {
  padding: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #1d80e2;
  background-color: #fff;
  height: 100%;
}
@media screen and (min-width: 1026px) {
  .page_products .products .result .result_list > li .content_wrap {
    padding: 15px 15px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_item_title {
  width: 100%;
  margin: 0 auto 10px;
  line-height: 1.5;
}
.page_products .products .result .result_list > li .content_wrap .content_item_title h2 {
  font-size: 14px;
  font-weight: 500;
  color: #20a5eb;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_item_title h2 {
    font-size: 18px;
    font-weight: 500;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_item_title .icn_favorite {
  margin-left: auto;
  padding: 2px;
  top: 15px;
  right: 15px;
  border: 1px solid #20a5eb;
  display: grid;
  place-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
}
.page_products .products .result .result_list > li .content_wrap .content_item_title .icn_favorite::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url(../images/public/icn_heart-gray.svg);
  background-size: cover;
  vertical-align: middle;
  margin: 0 auto;
}
.page_products .products .result .result_list > li .content_wrap .content_item_title .icn_favorite.active::after {
  background-image: url(../images/public/icn_heart.svg);
}
.page_products .products .result .result_list > li .content_wrap .content_img {
  margin: 0 auto 15px;
  padding: 0;
  flex-basis: auto;
}
.page_products .products .result .result_list > li .content_wrap .content_block {
  padding: 0;
  text-align: center;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_brand {
  background-color: #20a5eb;
  padding: 3px 10px;
  text-align: center;
  width: 100%;
  line-height: 1.1;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_brand {
    font-size: 17px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_name {
  font-size: 18px;
  font-weight: bold;
  color: #20a5eb;
  line-height: 1.4;
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_name span {
  display: block;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_name {
    font-size: 20px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_comment {
  font-size: 12px;
  color: #ff322e;
  letter-spacing: -1px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_comment {
    font-size: 14px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_price {
  font-size: 24px;
  font-weight: normal;
  color: #ff322e;
  letter-spacing: -1px;
  margin: 5px auto;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_price {
    font-size: 34px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_price strong {
  font-weight: bold;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_price span {
  font-weight: 500;
  font-size: 14px;
  margin-left: 5px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_price span {
    font-size: 18px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_small {
  font-size: 10px;
  margin: 10px 0;
  letter-spacing: -1px;
  line-height: 1.3;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_discount {
  white-space: nowrap;
  width: 100%;
  border-radius: 15px;
  background-color: #ff322e;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 0 3px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_discount {
    font-size: 18px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_discount strong {
  font-size: 33px;
  font-weight: bold;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_discount strong:after {
  content: attr(data-name);
  display: inline;
  color: #fff;
  width: 20px;
  vertical-align: middle;
  font-size: 22px;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_discount span {
  font-size: 26px;
  display: inline-block;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_discount span.small {
  font-size: 12px;
  letter-spacing: -1px;
  font-weight: normal;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_txt {
  color: #ff322e;
  letter-spacing: -1px;
  font-size: 12px;
  text-align: center;
  margin: -10px auto 3px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_txt {
    font-size: 16px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_warranty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 10px;
  color: #fff;
  background-color: #ff7400;
  font-size: 16px;
  line-height: 1.5;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_warranty strong {
  padding: 0 10px;
  font-weight: bold;
  font-size: 24px;
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_function {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 3px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_function {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_function li {
  background-color: #e2e2e2;
  display: grid;
  place-content: center;
  font-size: 10px;
  white-space: nowrap;
  letter-spacing: -1px;
  width: auto;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page_products .products .result .result_list > li .content_wrap .content_block .content_function li {
    font-size: 10px;
    letter-spacing: -1px;
  }
}
.page_products .products .result .result_list > li .content_wrap .content_block .content_function li.active {
  background-color: #00c492;
}
.page_products .products .result .result_list > li .content_wrap .content_block .product_text {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 10px;
}
.page_products .products .result .result_list > li .content_wrap .content_block .btn_detail {
  margin-top: auto;
}
.page_products .products .result .result_list > li .content_wrap .content_block .btn_detail a {
  background-color: #fff;
  color: #20a5eb;
}
.page_products .products .result .result_list > li .content_wrap .content_block .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_products .products .result .result_list > li .content_wrap .content_block .btn_detail a:hover {
  background-color: #20a5eb;
  color: #fff;
}
.page_products .products .result .result_list > li .content_wrap .content_block .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_products .products .pagenation {
  margin: 30px auto;
  display: grid;
  place-content: center;
}
.page_products .products .pagenation img {
  width: 285px;
}
@media screen and (min-width: 768px) {
  .page_products .products .pagenation img {
    width: 481px;
  }
}
.page_products .products .detail {
  background-color: #ebf7ff;
}
.page_products .products .detail .container {
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .container {
    padding: 30px 10px;
  }
}
.page_products .products .detail .content {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content {
    padding: 30px;
  }
}
.page_products .products .detail .content .content_wrap {
  padding: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap {
    padding: 15px 15px;
  }
}
.page_products .products .detail .content .content_wrap .content_item_title {
  width: 100%;
  margin: 0 auto 10px;
  /* foavorite button
  .icn_favorite {
    background: transparent;
    border: 1px solid #1d80e2;
    padding: 8px 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    //   border: 1px solid #fff;
    display: flex;
    align-items: center;
    width: auto;
    font-size: 14px;
    color: #1d80e2;
    cursor: pointer;
    line-height: 1;
    @media screen and (min-width: 768px) {
      margin-left: auto;
      margin-right: 0;
    }
    &::after {
      content: "";
      display: inline-block;
      width: 20px;
      height: 18px;
      background-image: url(../images/public/icn_heart-gray.svg);
      background-size: cover;
      vertical-align: middle;
      margin: 0 auto 0 5px;
    }
    &.active {
      border: 1px solid #1d80e2;
      &::after {
        background-image: url(../images/public/icn_heart.svg);
      }
    }
    &:hover {
      border: 1px solid #1d80e2;
      &::after {
        background-image: url(../images/public/icn_heart.svg);
      }
    }
  } */
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_item_title {
    position: relative;
  }
}
.page_products .products .detail .content .content_wrap .content_item_title h2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_item_title h2 {
    margin: 0 240px 5px 5px;
    text-align: left;
  }
}
.page_products .products .detail .content .content_wrap .content_item_title h2 span {
  color: #1d80e2;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_item_title h2 span {
    font-size: 24px;
    padding: 0;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_item_title .favorite_button {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.page_products .products .detail .content .content_wrap .content_block {
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block {
    flex-direction: row;
    gap: 30px 30px;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_img {
  margin: 0 auto 15px;
  padding: 0;
  flex-basis: auto;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner {
  flex: 1;
  padding: 0;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_brand {
  background-color: #1d80e2;
  padding: 3px 10px;
  text-align: center;
  width: 100%;
  line-height: 1.1;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_brand {
    font-size: 17px;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_name {
  font-size: 18px;
  font-weight: bold;
  color: #1d80e2;
  line-height: 1.4;
  text-align: center;
  padding: 0 0 10px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_name span {
  display: block;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_name {
    font-size: 22px;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_inner_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_inner_block {
    flex-direction: row;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_inner_block .content_inner_block_left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_inner_block .content_inner_block_left {
    width: 60%;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_inner_block .content_inner_block_right {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_comment {
  font-size: 12px;
  color: #ff322e;
  letter-spacing: -1px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_comment {
    font-size: 14px;
    text-align: left;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_price {
  font-size: 34px;
  font-weight: normal;
  color: #ff322e;
  letter-spacing: -1px;
  margin: 5px auto;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_price {
    font-size: 48px;
    text-align: left;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_price strong {
  font-weight: bold;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_price span {
  font-weight: 500;
  font-size: 14px;
  margin-left: 5px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_price span {
    font-size: 18px;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_small {
  font-size: 10px;
  margin: 10px 0;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_small {
    text-align: left;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_discount {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border-radius: 30px;
  margin: 0 auto;
  color: #fff;
  background-color: #ff322e;
  font-size: 16px;
  line-height: 1.25;
  padding: 5px 5px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_discount {
    flex-direction: column;
    border-radius: 50%;
    width: 108px;
    height: 108px;
    padding: 0;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_discount strong {
  padding: 0 5px;
  font-weight: bold;
  font-size: 27px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_discount strong:after {
  content: attr(data-name);
  display: inline;
  color: #fff;
  width: 20px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_txt {
  color: #ff322e;
  letter-spacing: -1px;
  font-size: 12px;
  text-align: center;
  margin: -10px auto 3px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_txt {
    font-size: 16px;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_warranty {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border-radius: 30px;
  margin: 0 auto;
  color: #fff;
  background-color: #ff7400;
  font-size: 16px;
  line-height: 1.25;
  padding: 5px 5px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_warranty {
    flex-direction: column;
    border-radius: 50%;
    width: 108px;
    height: 108px;
    padding: 0;
  }
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_warranty strong {
  padding: 0 5px;
  font-weight: bold;
  font-size: 27px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_warranty strong:after {
  content: attr(data-name);
  display: inline;
  color: #fff;
  width: 20px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}
.page_products .products .detail .content .content_wrap .content_block .content_inner .content_spec {
  background-color: #ebf7ff;
  padding: 10px;
  color: #1d80e2;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_wrap .content_block .content_inner .content_spec {
    font-size: 18px;
  }
}
.page_products .products .detail .content .content_function {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_function {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page_products .products .detail .content .content_function li {
  background-color: #e2e2e2;
  display: grid;
  place-content: center;
  line-height: 1.5;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: -1px;
  width: auto;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_function li {
    font-size: 19px;
    letter-spacing: -1px;
    padding: 5px;
  }
}
.page_products .products .detail .content .content_function li.active {
  background-color: #00c492;
}
.page_products .products .detail .content .content_repeat_block {
  border-top: 1px solid #1d80e2;
  width: 100%;
  padding: 20px 0;
  font-size: 14px;
}
.page_products .products .detail .content .content_repeat_block small {
  font-size: 12px;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .content_repeat_block {
    font-size: 17px;
  }
  .page_products .products .detail .content .content_repeat_block small {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
  }
}
.page_products .products .detail .content .links {
  margin: 0;
  padding: 0;
}
.page_products .products .detail .content .links .link {
  color: #00cba2;
  font-size: 14px;
  /*   &:after {
    content: ">>";
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  } */
}
@media screen and (min-width: 768px) {
  .page_products .products .detail .content .links .link {
    font-size: 17px;
  }
}
.page_products .products .detail .content .links .link:hover {
  text-decoration: underline;
}
.page_products .products .detail .content .btn_detail {
  margin-top: auto;
}
.page_products .products .detail .content .btn_detail a {
  background-color: #fff;
  color: #20a5eb;
}
.page_products .products .detail .content .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_products .products .detail .content .btn_detail a:hover {
  background-color: #20a5eb;
  color: #fff;
}
.page_products .products .detail .content .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_products .products .useful_content {
  padding: 20px 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page_products .products .useful_content {
    margin-bottom: 60px;
  }
}
.page_products .products .useful_content .useful_content_title {
  font-size: 17px;
  font-weight: bold;
  color: #1d80e2;
  margin: 20px auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .useful_content .useful_content_title {
    font-size: 30px;
  }
}
.page_products .products .useful_content .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 30px;
  flex-direction: column;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_products .products .useful_content .container {
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.page_products .products .useful_content .container > dl {
  padding: 10px;
  flex-basis: 100%;
  border: 1px solid #1d80e2;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .page_products .products .useful_content .container > dl {
    flex-basis: 50%;
  }
}
.page_products .products .useful_content .container > dl dt {
  font-size: 16px;
  text-align: center;
  color: #1d80e2;
  line-height: 1.5;
  padding: 10px;
  font-weight: bold;
}
.page_products .products .useful_content .container > dl dt strong {
  display: inline;
}
.page_products .products .useful_content .container > dl dt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .page_products .products .useful_content .container > dl dt br {
    display: block;
  }
  .page_products .products .useful_content .container > dl dt strong {
    font-size: 25px;
  }
}
.page_products .products .useful_content .container > dl dd {
  padding: 10px;
}
.page_products .products .useful_content .container > dl dd .btn_detail-lg {
  margin: 0 auto;
}
.page_products .products .useful_content .container > dl dd .btn_detail-lg a {
  min-width: auto;
  padding: 5px 40px;
}

.page_voice .voice {
  background-color: #ebf7ff;
  padding: 0 0 30px;
}
.page_voice .voice .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
.page_voice .voice section {
  padding: 30px 10px;
}
.page_voice .voice section .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .page_voice .voice section .container {
    padding: 20px 7.2%;
  }
}
.page_voice .voice_heading {
  margin-bottom: 30px;
}
.page_voice .voice_heading .content_title {
  font-size: 18px;
  color: #1f94e7;
  text-align: center;
  margin: 10px auto;
}
.page_voice .voice_heading .content_lead {
  background-color: #1d83e5;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding: 5px 15px;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_heading .content_lead {
    font-size: 21px;
  }
}
.page_voice .voice_heading .content_information {
  background-color: #ebf7ff;
  color: #20a5eb;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  line-height: 1;
  padding: 15px 15px;
  letter-spacing: 1px;
}
.page_voice .voice_content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_content {
    flex-direction: row;
  }
}
.page_voice .voice_content .voice_img {
  flex: 0 0 40%;
  margin-bottom: 20px;
}
.page_voice .voice_content .voice_img img {
  margin: 0 auto;
}
.page_voice .voice_content .voice_txt {
  flex: 0 0 60%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_content .voice_txt {
    padding: 0 0 0 3%;
  }
}
.page_voice .voice_content .voice_txt > * + * {
  margin-top: 20px;
}
.page_voice .voice_content .voice_txt .wrap h3 {
  font-size: 16px;
  font-weight: bold;
  color: #1d83e5;
  line-height: 1.5;
  margin-bottom: 5px;
}
.page_voice .voice_content .voice_txt .wrap p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: normal;
}
.page_voice .voice_information {
  margin-bottom: 30px;
}
.page_voice .voice_information dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_voice .voice_information dl {
    font-size: 16px;
  }
}
.page_voice .voice_information dl dt {
  flex-basis: 25%;
  background-color: #1d83e5;
  color: #fff;
  padding: 10px;
  text-align-last: justify;
}
.page_voice .voice_information dl dd {
  flex-basis: 75%;
  background-color: #ebf7ff;
  padding: 10px;
  position: relative;
  color: #1d83e5;
}
.page_voice .voice_information dl dd .btn_detail {
  float: right;
  margin-top: 0;
}
.page_voice .voice_information dl dd .btn_detail a {
  font-size: 11px;
}
.page_voice .voice_aWard {
  border-top: 1px solid #1d83e5;
  border-bottom: 1px solid #1d83e5;
  padding: 20px 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
.page_voice .voice_aWard .aWard_img {
  width: 150px;
}
.page_voice .voice_aWard .aWard_img img {
  width: 100%;
}
.page_voice .voice_aWard .aWard_txt {
  flex: 1;
}
.page_voice .voice_aWard .aWard_txt h4 {
  color: #1d83e5;
  font-size: 16px;
  font-weight: bold;
}

.page_work .work {
  background-color: #ebf7ff;
  padding: 0 0 30px;
}
.page_work .work .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
.page_work .work .work_term_title {
  font-weight: bold;
  font-size: 17px;
  color: #1d80e2;
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_term_title {
    font-size: 21px;
  }
}
.page_work .work .work_list {
  padding: 30px 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 20px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_work .work .work_list li .work_wrap {
  background-color: #fff;
  padding: 20px;
}
.page_work .work .work_list li .work_wrap .work_title {
  font-weight: bold;
  font-size: 16px;
  color: #1d80e2;
  text-align: center;
}
.page_work .work .work_list li .work_wrap .work_date {
  font-size: 12px;
  text-align: center;
  color: #4d4d4d;
  margin-bottom: 10px;
}
.page_work .work .work_list li .work_wrap .work_img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 5px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_list li .work_wrap .work_img {
    justify-content: space-between;
  }
}
.page_work .work .work_list li .work_wrap .work_img .icn_work_arrow {
  flex: 0 0 29px;
}
.page_work .work .work_list li .work_wrap .work_img .before {
  position: relative;
}
.page_work .work .work_list li .work_wrap .work_img .before:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #606060;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}
.page_work .work .work_list li .work_wrap .work_img .after {
  position: relative;
}
.page_work .work .work_list li .work_wrap .work_img .after:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #20a5eb;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}
.page_work .work .work_list li .work_wrap .btn_detail {
  display: grid;
  place-items: center;
}
.page_work .work .pagenation {
  max-width: 481px;
  margin: 30px auto 60px;
}
.page_work .work .work_detail {
  padding: 30px 10px;
}
.page_work .work .work_detail .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .container {
    padding: 20px 7.2%;
  }
}
.page_work .work .work_detail .work_heading {
  margin-bottom: 30px;
}
.page_work .work .work_detail .work_heading .content_title {
  font-size: 18px;
  color: #1f94e7;
  text-align: center;
  margin: 10px auto;
}
.page_work .work .work_detail .work_heading .content_lead {
  background-color: #1d83e5;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding: 5px 15px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_heading .content_lead {
    font-size: 21px;
  }
}
.page_work .work .work_detail .work_heading .content_information {
  background-color: #ebf7ff;
  color: #20a5eb;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  line-height: 1;
  padding: 15px 15px;
  letter-spacing: 1px;
}
.page_work .work .work_detail .work_content {
  margin-bottom: 30px;
}
.page_work .work .work_detail .work_content .work_img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_content .work_img {
    margin-bottom: 80px;
  }
}
.page_work .work .work_detail .work_content .work_img .before {
  flex-basis: 40%;
  position: relative;
}
.page_work .work .work_detail .work_content .work_img .before img {
  margin: 0 auto;
  width: 180px;
}
.page_work .work .work_detail .work_content .work_img .before:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #606060;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_content .work_img .before:after {
    font-size: 25px;
    bottom: -50px;
  }
}
.page_work .work .work_detail .work_content .work_img .icn_work_arrow {
  flex-basis: 10%;
}
.page_work .work .work_detail .work_content .work_img .icn_work_arrow img {
  margin: 0 auto;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_content .work_img .icn_work_arrow img {
    width: 46px;
  }
}
.page_work .work .work_detail .work_content .work_img .after {
  flex-basis: 50%;
  position: relative;
}
.page_work .work .work_detail .work_content .work_img .after img {
  margin: 0 auto;
  width: 300px;
}
.page_work .work .work_detail .work_content .work_img .after:after {
  content: attr(data-title);
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #20a5eb;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_content .work_img .after:after {
    bottom: -60px;
    font-size: 33px;
  }
}
.page_work .work .work_detail .work_information {
  margin-bottom: 30px;
}
.page_work .work .work_detail .work_information dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_work .work .work_detail .work_information dl {
    font-size: 16px;
  }
}
.page_work .work .work_detail .work_information dl dt {
  flex-basis: 25%;
  background-color: #1d83e5;
  color: #fff;
  padding: 10px;
  text-align-last: justify;
}
.page_work .work .work_detail .work_information dl dd {
  flex-basis: 75%;
  background-color: #ebf7ff;
  padding: 10px;
  position: relative;
  color: #1d83e5;
}
.page_work .work .work_detail .work_information dl dd .btn_detail {
  float: right;
  margin-top: 0;
}
.page_work .work .work_detail .work_information dl dd .btn_detail a {
  font-size: 11px;
}
.page_work .work .work_detail .work_information .small {
  text-align: center;
  color: #1d83e5;
  padding: 10px 0;
  line-height: 1.3;
}
.page_work .work .work_detail .work_aWard {
  border-top: 1px solid #1d83e5;
  border-bottom: 1px solid #1d83e5;
  padding: 20px 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
.page_work .work .work_detail .work_aWard .aWard_txt {
  flex: 1;
}
.page_work .work .work_detail .work_aWard .aWard_txt h4 {
  color: #1d83e5;
  font-size: 16px;
  font-weight: bold;
}

.page_news .news {
  background-color: #ebf7ff;
  padding: 0 10px 30px;
}
.page_news .news .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page_news .news .container {
    padding: 0;
  }
}
.page_news .news .news_list {
  padding: 30px 0;
}
.page_news .news .news_list li dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_list li dl {
    font-size: 16px;
  }
}
.page_news .news .news_list li dl dt {
  flex-basis: 100%;
  background-color: #20a5eb;
  color: #fff;
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_list li dl dt {
    flex-basis: 20%;
    padding: 20px;
    text-align: center;
  }
}
.page_news .news .news_list li dl dd {
  flex-basis: 100%;
  background-color: #fff;
  padding: 10px;
  position: relative;
  color: #20a5eb;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_list li dl dd {
    flex-basis: 80%;
    padding: 20px;
  }
}
.page_news .news .news_list li dl dd > a {
  display: inline;
  transition: 0.2s ease-out;
}
.page_news .news .news_list li dl dd > a:hover {
  text-decoration: underline;
  color: #20a5eb;
}
.page_news .news .news_list li dl dd .btn_detail {
  float: right;
  margin-top: 0;
  width: 146px;
}
.page_news .news .news_list li dl dd .btn_detail a {
  font-size: 11px;
}
.page_news .news .news_detail {
  padding: 30px 0;
}
.page_news .news .news_detail .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_detail .container {
    padding: 20px 7.2%;
  }
}
.page_news .news .news_detail .news_heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1d80e2;
}
.page_news .news .news_detail .news_heading .content_title {
  font-size: 22px;
  color: #1d80e2;
  margin: 10px auto 20px;
  line-height: 1.5;
}
.page_news .news .news_detail .news_heading .content_bottom {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page_news .news .news_detail .news_heading .content_bottom .content_sns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.page_news .news .news_detail .news_heading .content_bottom .content_sns img {
  width: 80px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_detail .news_heading .content_bottom .content_sns img {
    width: 102px;
  }
}
.page_news .news .news_detail .news_heading .content_bottom .content_date {
  margin-left: auto;
  background-color: #20a5eb;
  max-width: 120px;
  font-size: 12px;
  color: #fff;
  padding: 3px 8px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_news .news .news_detail .news_heading .content_bottom .content_date {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.page_news .news .news_detail .news_content {
  margin-bottom: 30px;
}

.pagenation {
  max-width: 481px;
  margin: 30px auto 60px;
}

.page_useful .useful {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_useful .useful > section {
  padding: 20px 0;
}
.page_useful .useful .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .container {
    padding: 30px 7.2%;
    margin: 0 auto;
  }
}
.page_useful .useful .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_useful .useful .section_description {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #1d80e2;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .section_description {
    font-size: 20px;
  }
}
.page_useful .useful .section_description span {
  display: block;
}
.page_useful .useful p.small {
  text-align: center;
  margin: 5px auto;
  font-size: 12px;
  line-height: 1.3;
}
.page_useful .useful .content_note {
  text-align: center;
  margin: 30px auto;
}
.page_useful .useful .content_note p {
  width: 90%;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid #00cba2;
  padding: 10px 20px;
  border-radius: 30px;
  color: #00cba2;
  text-align: center;
  font-size: 13px;
  box-sizing: border-box;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_note p {
    font-size: 17px;
  }
}
.page_useful .useful .content_note p span {
  display: inline-block;
}
.page_useful .useful .brand_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .brand_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_useful .useful .brand_list > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.page_useful .useful .brand_list > div.brand-01 img {
  width: 101px;
  margin: 10px auto;
}
.page_useful .useful .brand_list > div.brand-02 img {
  width: 107px;
  margin: 10px auto;
}
.page_useful .useful .brand_list > div.brand-03 img {
  width: 134px;
  margin: 10px auto;
}
.page_useful .useful .brand_list > div .btn_detail {
  margin-top: auto;
  min-width: 180px;
}
.page_useful .useful .brand_list > div .btn_detail a {
  background-color: #fff;
  color: #1d80e2;
}
.page_useful .useful .brand_list > div .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_useful .useful .brand_list > div .btn_detail a:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_useful .useful .brand_list > div .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_useful .useful .content_title {
  font-size: 18px;
  color: #1f94e7;
  text-align: center;
  margin: 10px auto;
  font-weight: 500;
  line-height: 1.5;
}
.page_useful .useful .content_title.color_normal {
  color: #606060;
}
.page_useful .useful .content_title.color_normal strong {
  color: #1f94e7;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_title {
    font-size: 23px;
  }
}
.page_useful .useful .content_description {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 17px;
  text-align: center;
}
.page_useful .useful .content_description strong {
  color: #1d80e2;
  font-weight: normal;
}
.page_useful .useful .content_description small {
  display: block;
  font-size: 12px;
}
.page_useful .useful .content_description.text_left {
  text-align: left;
}
.page_useful .useful .content_text {
  width: 100%;
  padding: 20px 0;
  font-size: 17px;
  text-align: center;
}
.page_useful .useful .content_text strong {
  color: #1d80e2;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.page_useful .useful .content_text small {
  display: block;
  font-size: 13px;
}
.page_useful .useful .content_text.text_left {
  text-align: left;
}
.page_useful .useful .content_text.fs14 {
  font-size: 14px;
}
.page_useful .useful .content_text.fs13 {
  font-size: 13px;
}
.page_useful .useful .content_item {
  font-size: 16px;
  list-style-type: square;
  list-style-position: outside;
  width: 100%;
  padding: 20px 0 20px 2rem;
}
.page_useful .useful .content_item li {
  margin-left: 1em;
  line-height: 1.5;
  padding: 0.3em 0;
  text-align: left;
}
.page_useful .useful .brand_img {
  max-width: 768px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 10px;
}
.page_useful .useful .brand_img figure img {
  height: 158px;
  object-fit: contain;
  margin: 0 auto;
}
.page_useful .useful .brand_img figure.brand_img01 figcaption {
  margin: 10px auto;
}
.page_useful .useful .brand_img figure.brand_img01 figcaption img {
  width: 99px;
  height: auto;
  margin: 0 auto;
}
.page_useful .useful .brand_img figure.brand_img01 figcaption img.bgr_blueLight {
  background-color: #a5d6f7;
}
.page_useful .useful .brand_img figure.brand_img02 figcaption {
  margin: 10px auto;
}
.page_useful .useful .brand_img figure.brand_img02 figcaption img {
  width: 105px;
  height: auto;
  margin: 0 auto;
}
.page_useful .useful .brand_img figure.brand_img03 figcaption {
  margin: 10px auto;
}
.page_useful .useful .brand_img figure.brand_img03 figcaption img {
  width: 131px;
  height: auto;
  margin: 0 auto;
}
.page_useful .useful .content_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  justify-content: center;
}
.page_useful .useful .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0 5px;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_information {
    font-size: 20px;
  }
}
.page_useful .useful .content_img {
  width: 100%;
  margin: 20px auto;
}
.page_useful .useful .content_img.mtb0 {
  margin: 0 auto;
}
.page_useful .useful .content_img.mtb0:nth-of-type(1) {
  margin-top: 1px;
}
.page_useful .useful .content_img img {
  width: auto;
  margin: 0 auto;
}
.page_useful .useful .content_img figcaption {
  text-align: center;
}
.page_useful .useful .content_img.mtb0 {
  margin: 0 auto;
}
.page_useful .useful .content_img.img_column2 {
  display: flex;
  flex-wrap: wrap;
}
.page_useful .useful .content_img.img_column2 > div {
  margin-bottom: 20px;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column2 > div {
    flex-basis: 50%;
  }
}
.page_useful .useful .content_img.img_column2 > div.content_block:nth-of-type(2) {
  border-left: 1px solid #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column2 > div.content_block:nth-of-type(2) {
    border-left: none;
  }
}
.page_useful .useful .content_img.img_column2.flex_row {
  flex-direction: column;
}
.page_useful .useful .content_img.img_column2.flex_row:nth-of-type(2) {
  border-left: 1px solid #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column2.flex_row {
    flex-direction: row;
  }
}
.page_useful .useful .content_img.img_column2.flex_row > .content_block {
  flex-basis: 50%;
  margin-bottom: 0;
  margin-left: -1px;
}
.page_useful .useful .content_img .brand-01 img {
  width: 101px;
  margin: 0 auto;
}
.page_useful .useful .content_img.img_column3 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.page_useful .useful .content_img.img_column3 > div {
  margin-bottom: 20px;
  flex-basis: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column3 > div {
    flex-basis: 33%;
  }
}
.page_useful .useful .content_img.img_column3 > div h4 {
  font-size: 18px;
}
.page_useful .useful .content_img.img_column3 > div .img {
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.page_useful .useful .content_img.img_column3 > div.content_block:nth-of-type(2), .page_useful .useful .content_img.img_column3 > div.content_block:nth-of-type(3) {
  border-left: none;
}
.page_useful .useful .content_img.img_column3 > div .txt strong {
  color: #1d80e2;
}
.page_useful .useful .content_img.img_column3.flex_row {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column3.flex_row {
    flex-direction: row;
  }
}
.page_useful .useful .content_img.img_column3.flex_row > .content_block {
  flex-basis: 33.33333%;
  margin-bottom: 0;
}
.page_useful .useful .content_img.img_column3.flex_row > .content_block:nth-of-type(2), .page_useful .useful .content_img.img_column3.flex_row > .content_block:nth-of-type(3) {
  border-left: 1px solid #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column3.flex_row > .content_block:nth-of-type(2), .page_useful .useful .content_img.img_column3.flex_row > .content_block:nth-of-type(3) {
    border-left: none;
  }
}
.page_useful .useful .content_img.img_column3.flex_row > .content_block.block_custom {
  border: none;
  align-items: flex-start;
}
.page_useful .useful .content_img.img_column3.flex_row > .content_block.block_custom .btn_detail {
  margin-top: auto;
}
.page_useful .useful .content_img.img_column4 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.page_useful .useful .content_img.img_column4 > div {
  margin-bottom: 20px;
  flex-basis: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column4 > div {
    flex-basis: 25%;
  }
}
.page_useful .useful .content_img.img_column4 > div h4 {
  font-size: 18px;
}
.page_useful .useful .content_img.img_column4 > div .img {
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.page_useful .useful .content_img.img_column4 > div.content_block:nth-of-type(2), .page_useful .useful .content_img.img_column4 > div.content_block:nth-of-type(3) {
  border-left: none;
}
.page_useful .useful .content_img.img_column4 > div .txt strong {
  color: #1d80e2;
}
.page_useful .useful .content_img.img_column4.flex_row {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column4.flex_row {
    flex-direction: row;
  }
}
.page_useful .useful .content_img.img_column4.flex_row > .content_block {
  flex-basis: 25%;
  margin-bottom: 0;
}
.page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(2), .page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(3), .page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(4) {
  border-left: 1px solid #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(2), .page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(3), .page_useful .useful .content_img.img_column4.flex_row > .content_block:nth-of-type(4) {
    border-left: none;
  }
}
.page_useful .useful .content_img.img_column4.flex_row > .content_block.block_custom {
  border: none;
  align-items: flex-start;
}
.page_useful .useful .content_img.img_column4.flex_row > .content_block.block_custom .btn_detail {
  margin-top: auto;
}
.page_useful .useful .content_block {
  text-align: center;
  border: 1px solid #1d80e2;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 780px;
  box-sizing: border-box;
  flex-direction: column;
  margin: -1px auto 0;
  line-height: 2;
}
.page_useful .useful .content_block.block_custom {
  border: none;
  padding: 0;
}
.page_useful .useful .content_block.block_custom.pd30 {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_block.flex_direciton-column {
    flex-direction: column;
  }
  .page_useful .useful .content_block.flex_direciton-row {
    flex-direction: row;
  }
}
.page_useful .useful .content_block .content_title {
  text-align: center;
}
.page_useful .useful .content_block .content_title.text_left {
  text-align: left;
}
.page_useful .useful .content_block .content_text {
  margin: 0;
  padding: 0;
}
.page_useful .useful .content_block .content_text .text_left {
  text-align: left;
}
.page_useful .useful .content_block small {
  width: 100%;
  display: block;
  margin-top: 10px;
}
.page_useful .useful .content_block small.text_center {
  text-align: center;
}
.page_useful .useful .content_block.block_column2 {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_block.block_column2 {
    flex-direction: row;
  }
}
.page_useful .useful .content_block.block_column2 > div {
  margin: 0 auto;
  align-items: stretch;
  text-align: left;
  padding: 20px 20px;
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_block.block_column2 > div {
    padding: 20px;
  }
}
.page_useful .useful .content_block.block_column2 > div.border_right:nth-of-type(1) {
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_block.block_column2 > div.border_right:nth-of-type(1) {
    border-right: 1px solid #1d80e2;
  }
}
.page_useful .useful .content_block.block_column2 > div.border_right:nth-of-type(1) .content_img {
  margin-top: auto;
}
.page_useful .useful .content_block.block_column2 > div .content_title {
  margin: 10px 0;
}
.page_useful .useful .content_block.block_column2 > div .content_text {
  text-align: center;
}
.page_useful .useful .content_block.block_column2 > div .content_text.text_left {
  text-align: left;
}
.page_useful .useful .content_block.block_column2 > div .content_img {
  margin-top: auto;
}
.page_useful .useful .content_block.block_column2 > div.w70 {
  flex-basis: 70%;
  padding: 0;
}
.page_useful .useful .content_block.block_column2 > div.w70.p20 {
  padding: 20px;
}
.page_useful .useful .content_block.block_column2 > div.w30 {
  flex-basis: 30%;
  margin: 0 auto;
}
.page_useful .useful .content_block .content_freeDial {
  margin: 0 auto;
}
.page_useful .useful .content_block .content_freeDial img {
  width: 340px;
}
.page_useful .useful .content_block .btn_detail {
  margin: 0 auto;
}
.page_useful .useful .content_block .btn_detail a {
  padding: 10px 40px;
  font-size: 16px;
  line-height: 1.3;
}
.page_useful .useful .content_wrap {
  max-width: 780px;
  display: flex;
  align-items: stretch;
  gap: 20px 20px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 30px 0 60px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_wrap {
    flex-direction: row;
  }
}
.page_useful .useful .content_wrap .content_wrap_inner {
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_wrap .content_wrap_inner {
    flex-basis: 50%;
  }
}
.page_useful .useful .content_wrap .content_wrap_inner .content_block {
  text-align: left;
}
.page_useful .useful .content_wrap .content_wrap_inner .content_block .img {
  margin-bottom: 10px;
}
.page_useful .useful .content_block_title {
  font-size: 16px;
  color: #1f94e7;
  text-align: center;
  margin: 0 auto 10px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_block_title {
    font-size: 20px;
  }
}
.page_useful .useful .content_keyword {
  border: 1px solid #1d80e2;
  padding: 1em;
  color: #1d80e2;
  margin: 30px auto;
  text-align: left;
}
.page_useful .useful .bottom_nav .container {
  background-color: transparent;
}
.page_useful .useful .content_list_title {
  padding: 0;
  margin: 0;
  width: 100%;
  font-weight: bold;
  text-align: left;
}
.page_useful .useful .content_list_title.clr_green {
  color: #00cba2;
}
.page_useful .useful .content_list {
  width: 100%;
  text-align: left;
}
.page_useful .useful .content_list.list_column3 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0 10px;
  text-align: left;
  font-size: 13px;
}
.page_useful .useful .content_list.list_column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  background-color: #fff;
  border: 5px solid #ebf7ff;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .page_useful .useful .content_list.list_column2 {
    flex-direction: row;
  }
}
.page_useful .useful .content_list.list_column2 ul {
  flex-basis: 50%;
  margin: 0;
  padding: 0 0 0 20px;
}
.page_useful .useful .content_list.list_column2 ul li {
  list-style-type: disc;
}
.page_useful .useful .content_deflist {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.page_useful .useful .content_deflist dt {
  flex-basis: 20%;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  color: #fff;
  background-color: #20a5eb;
  line-height: 1.5;
  letter-spacing: 1px;
}
.page_useful .useful .content_deflist dt span {
  font-size: 23px;
}
.page_useful .useful .content_deflist dd {
  flex-basis: 80%;
  padding: 10px 20px;
  font-size: 17px;
  background-color: #ebf7ff;
  text-align: left;
  line-height: 1.5;
}

.page_sdgs .sdgs {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_sdgs .sdgs > section {
  padding: 20px 0;
}
.page_sdgs .sdgs .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .container {
    padding: 30px 7.2%;
    margin: 0 auto;
  }
}
.page_sdgs .sdgs .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_sdgs .sdgs .content {
  width: 100%;
  max-width: 780px;
  padding: 20px 0;
  margin: 0 auto;
}
.page_sdgs .sdgs .content .content_title h2 {
  font-size: 18px;
  color: #1d80e2;
  text-align: center;
  margin: 10px auto;
  font-weight: 500;
  line-height: 1.5;
}
.page_sdgs .sdgs .content .content_title h2.color_normal {
  color: #606060;
}
.page_sdgs .sdgs .content .content_title h2.color_normal strong {
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_title h2 {
    font-size: 24px;
  }
}
.page_sdgs .sdgs .content .content_title h2.text_left {
  text-align: left;
}
.page_sdgs .sdgs .content .content_text {
  margin-bottom: 1em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_text {
    font-size: 16px;
  }
}
.page_sdgs .sdgs .content .content_text p {
  text-align: left;
  width: 100%;
  margin-bottom: 1em;
}
.page_sdgs .sdgs .content .content_text p.text_center {
  text-align: center;
}
.page_sdgs .sdgs .content .content_text p a {
  color: #1d80e2;
  display: inline-block;
}
.page_sdgs .sdgs .content .content_text p a:hover {
  text-decoration: underline;
}
.page_sdgs .sdgs .content .btn_detail {
  width: 100%;
  margin: 0 auto;
}
.page_sdgs .sdgs .content .btn_detail a {
  max-width: 358px;
  width: 100%;
  min-width: 240px;
  box-sizing: border-box;
  padding: 9px 10px;
  border: 1px solid #1d80e2;
  background-color: #fff;
  color: #1d80e2;
  font-size: 16px;
  margin: 0 auto;
}
.page_sdgs .sdgs .content .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_sdgs .sdgs .content .btn_detail a:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_sdgs .sdgs .content .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_sdgs .sdgs .content .content_wrap {
  margin: 0 auto 1em;
  width: 100%;
}
.page_sdgs .sdgs .content .content_wrap img {
  margin: 0 auto 1em;
}
.page_sdgs .sdgs .content .content_wrap_bgr {
  background-color: #ebf7ff;
  padding: 20px 40px;
}
.page_sdgs .sdgs .content .content_wrap_title {
  border: 1px solid #1d80e2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_wrap_title {
    flex-direction: row;
  }
}
.page_sdgs .sdgs .content .content_wrap_title div:nth-of-type(1) {
  flex-basis: 22%;
  border-bottom: 1px solid #1d80e2;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 10px;
}
.page_sdgs .sdgs .content .content_wrap_title div:nth-of-type(1) img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_wrap_title div:nth-of-type(1) {
    padding: 10px 20px 10px 10px;
    border-right: 1px solid #1d80e2;
    border-bottom: none;
  }
}
.page_sdgs .sdgs .content .content_wrap_title div:nth-of-type(2) {
  font-size: 16px;
  color: #1d80e2;
  line-height: 1.5;
  flex-basis: 78%;
  padding: 10px 10px 10px 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_wrap_title div:nth-of-type(2) {
    padding: 10px 10px 10px 20px;
    font-size: 20px;
  }
}
.page_sdgs .sdgs .content .content_wrap_column_title {
  text-align: left;
}
.page_sdgs .sdgs .content .content_wrap_column2 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page_sdgs .sdgs .content .content_wrap_column2 {
    flex-direction: row;
    font-size: 16px;
  }
}
.page_sdgs .sdgs .content .content_wrap_column2 .img_border {
  border: 1px solid #1d80e2;
  display: block;
  padding: 1px;
  width: 100%;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div:nth-of-type(1) {
  margin: 0 auto;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div:nth-of-type(2) {
  flex: 1;
  margin: 0 auto;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div:nth-of-type(2) .content_text {
  text-align: center;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div:nth-of-type(2) .content_text.text_left {
  text-align: left;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div:nth-of-type(2) .btn_detail a {
  width: 100%;
}
.page_sdgs .sdgs .content .content_wrap_column2 > div.img {
  flex-basis: 50%;
}
.page_sdgs .sdgs .bottom_nav .container {
  background-color: transparent;
}

.page_safe .safe {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_safe .safe > section {
  padding: 50px 0 20px;
}
.page_safe .safe > section:last-of-type {
  padding-bottom: 60px;
}
.page_safe .safe .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_safe .safe .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px 10px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1d80e2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .container {
    padding: 30px 4.8%;
    margin: 0 auto;
  }
}
.page_safe .safe .section_number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .section_number {
    top: -28px;
    left: 5%;
    transform: translateX(-5%);
    -webkit-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
  }
}
.page_safe .safe .section_number p {
  display: flex;
  align-items: center;
  color: #1d80e2;
  border: 1px solid #1d80e2;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 3px 26px;
  background-color: #fff;
  line-height: 35px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .section_number p {
    padding: 10px 26px;
    font-size: 20px;
  }
}
.page_safe .safe .section_number p span {
  letter-spacing: 0.2em;
}
.page_safe .safe .section_number p strong {
  font-size: 26px;
  font-weight: 500;
  padding: 0 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .section_number p strong {
    font-size: 35px;
  }
}
.page_safe .safe .content {
  width: 100%;
  max-width: 896px;
  padding: 0 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content {
    flex-direction: row;
  }
}
.page_safe .safe .content .mlrauto {
  margin: 0 auto;
}
.page_safe .safe .content .content_full {
  flex-basis: 100%;
  font-size: 20px;
}
.page_safe .safe .content .content_full h1 {
  color: #1d80e2;
  text-align: center;
  margin: 10px auto;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 20px;
}
.page_safe .safe .content .content_full h1 strong {
  color: #ff7400;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content .content_full h1 {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
}
.page_safe .safe .content .content_text {
  font-size: 18px;
}
.page_safe .safe .content .content_text.mlrauto {
  margin: 0 auto;
}
.page_safe .safe .content .content_left {
  flex-basis: 30%;
}
.page_safe .safe .content .content_left ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page_safe .safe .content .content_left ul li {
  display: grid;
  place-content: center;
  width: 50%;
  padding: 10px;
}
.page_safe .safe .content .content_left ul li.brand_toto img {
  width: 77px;
}
.page_safe .safe .content .content_left ul li.brand_lixil img {
  width: 87px;
}
.page_safe .safe .content .content_left ul li.brand_panasonic img {
  width: 105px;
}
.page_safe .safe .content .content_left ul li.brand_paloma img {
  width: 97px;
}
.page_safe .safe .content .content_left ul li.brand_rinnai img {
  width: 111px;
}
.page_safe .safe .content .content_left ul li.brand_noritz img {
  width: 101px;
}
.page_safe .safe .content .content_left img {
  margin: 0 auto;
  text-align: center;
}
.page_safe .safe .content .content_right {
  flex: 1;
}
.page_safe .safe .content .content_right p {
  text-align: left;
  font-size: 14px;
}
.page_safe .safe .content .content_right p strong {
  color: #ff7400;
}
.page_safe .safe .content .content_right p strong {
  font-weight: normal;
}
.page_safe .safe .content .content_right p small {
  padding: 10px 0;
  display: block;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content .content_right p {
    font-size: 18px;
  }
}
.page_safe .safe .content .content_text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content .content_text {
    font-size: 16px;
  }
}
.page_safe .safe .content_block {
  margin-top: 40px;
  text-align: left;
  border-top: 1px solid #1d80e2;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block {
    flex-direction: row;
  }
}
.page_safe .safe .content_block div.content_text {
  flex-basis: 60%;
}
.page_safe .safe .content_block div.content_text h2 {
  color: #1d80e2;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block div.content_text h2 {
    font-size: 16px;
  }
}
.page_safe .safe .content_block div.content_text p {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block div.content_text p {
    font-size: 14px;
  }
}
.page_safe .safe .content_block div.content_text p span {
  display: inline-block;
}
.page_safe .safe .content_block div.content_text p strong {
  font-weight: normal;
}
.page_safe .safe .content_block div.content_img {
  flex-basis: 40%;
  margin: 0 auto;
}
.page_safe .safe .content_block div.content_img p img {
  margin: 0 auto;
}
.page_safe .safe .content_block2 {
  display: flex;
  border-top: 1px solid #1d80e2;
  border-bottom: 1px solid #1d80e2;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
  gap: 10px 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block2 {
    flex-direction: row;
  }
}
.page_safe .safe .content_block2 div {
  flex-basis: 50%;
  text-align: left;
}
.page_safe .safe .content_block2 div h2 {
  font-size: 16px;
  font-weight: bold;
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block2 div h2 {
    font-size: 18px;
  }
}
.page_safe .safe .content_block2 div p {
  font-size: 14px;
}
.page_safe .safe .content_block2 div p strong {
  color: #ff7400;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block2 div p strong {
    font-size: 16px;
  }
}
.page_safe .safe .content_block2 div p small {
  display: block;
  font-size: 12px;
}
.page_safe .safe .content_block3 {
  display: flex;
  flex-direction: column;
  gap: 10px 10px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block3 {
    flex-direction: row;
  }
}
.page_safe .safe .content_block3 div figure img {
  margin: 0 auto;
}
.page_safe .safe .content_block3 div figure figcaption {
  color: #1d80e2;
  font-style: 20px;
  font-weight: bold;
}
.page_safe .safe .content_block3 div:nth-of-type(1) {
  order: -1;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block3 div:nth-of-type(1) {
    order: 0;
    width: auto;
  }
}
.page_safe .safe .content_block3 div:nth-of-type(2) {
  text-align: left;
  text-size: 16px;
  width: 100%;
}
.page_safe .safe .content_block3 div:nth-of-type(2) strong {
  font-weight: normal;
  color: #ff7400;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block3 div:nth-of-type(2) {
    flex: 1;
    text-shadow: 14px;
    width: auto;
  }
}
.page_safe .safe .content_block3 div:nth-of-type(3) {
  order: -1;
}
@media screen and (min-width: 768px) {
  .page_safe .safe .content_block3 div:nth-of-type(3) {
    order: 0;
    width: auto;
  }
}

.page_flow .flow {
  background-color: #ebf7ff;
  padding: 20px 10px 0;
}
.page_flow .flow > section {
  padding: 50px 0 20px;
}
.page_flow .flow > section:first-of-type {
  padding-top: 10px;
}
.page_flow .flow .section_title {
  font-size: 17px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .section_title {
    font-size: 27px;
    padding: 20px 0;
  }
}
.page_flow .flow .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px 10px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .container {
    padding: 30px 4.8% 60px;
    margin: 0 auto;
  }
}
.page_flow .flow .container.icn_down:after {
  content: "";
  display: inline-block;
  width: 84px;
  height: 43px;
  background-image: url(../images/flow/icn_down.svg);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 42px);
}
@media screen and (min-width: 768px) {
  .page_flow .flow .container.icn_down:after {
    width: 108px;
    height: 55px;
    left: calc(50% - 54px);
  }
}
.page_flow .flow .section_number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 5px solid #fff;
  border-radius: 50px;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .section_number {
    top: -28px;
    left: 10%;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    transform: translateX(-5%);
    -webkit-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
  }
}
.page_flow .flow .section_number p {
  display: flex;
  align-items: center;
  color: #1d80e2;
  border: 1px solid #1d80e2;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 3px 26px;
  background-color: #fff;
  line-height: 35px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .section_number p {
    margin: 0 auto;
    display: grid;
    place-content: center;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    font-size: 20px;
  }
}
.page_flow .flow .section_number p span {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .section_number p span {
    display: block;
  }
}
.page_flow .flow .section_number p strong {
  font-size: 26px;
  font-weight: 500;
  padding: 0 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .section_number p strong {
    display: block;
  }
}
.page_flow .flow .section_number.after_maintenance {
  width: auto;
  height: auto;
  border-radius: 50px;
}
.page_flow .flow .section_number.after_maintenance p {
  width: auto;
  border-radius: 50px;
  padding: 10px 20px;
  line-height: 1.3;
  height: auto;
}
.page_flow .flow .content {
  font-size: 14px;
  text-align: left;
  width: 100%;
  max-width: 780px;
  padding: 0 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content {
    font-size: 16px;
  }
}
.page_flow .flow .content strong {
  color: #1d80e2;
  font-weight: normal;
}
.page_flow .flow .content .small {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .small {
    font-size: 14px;
  }
}
.page_flow .flow .content small {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content small {
    font-size: 14px;
  }
}
.page_flow .flow .content img {
  margin: 0 auto;
}
.page_flow .flow .content img.bgr {
  padding: 7px;
  background-color: #ebf7ff;
}
.page_flow .flow .content.size_lg {
  max-width: 932px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content {
    flex-direction: row;
  }
}
.page_flow .flow .content .mlrauto {
  margin: 0 auto;
}
.page_flow .flow .content .content_full {
  flex-basis: 100%;
}
.page_flow .flow .content .content_full h2 {
  flex-basis: 100%;
  font-size: 20px;
  color: #1d80e2;
  text-align: center;
  margin: 20px auto;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.page_flow .flow .content .content_full h2 strong {
  color: #ff7400;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full h2 {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
}
.page_flow .flow .content .content_full h2.mt50 {
  margin-top: 50px;
}
.page_flow .flow .content .content_full h3 {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin: 0 auto;
  color: #1d80e2;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full h3 {
    font-size: 23px;
  }
}
.page_flow .flow .content .content_full .content_item01 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 10px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full .content_item01 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_flow .flow .content .content_full .content_item01 li {
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #1d80e2;
  padding: 10px;
  text-align: center;
  color: #1d80e2;
  line-height: 1.5;
  position: relative;
}
.page_flow .flow .content .content_full .content_item01 li:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #1d80df transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full .content_item01 li {
    font-size: 16px;
  }
}
.page_flow .flow .content .content_full .content_item02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 0;
}
.page_flow .flow .content .content_full .content_item02 li {
  width: 50%;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full .content_item02 li {
    width: 25%;
  }
}
.page_flow .flow .content .content_full .content_item02 li figure figcaption {
  text-align: center;
  color: #1d80df;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_flow .flow .content .content_full .content_item02 li figure figcaption {
    font-size: 16px;
  }
}
.page_flow .flow .content .content_block {
  border: 1px solid #1d80df;
  padding: 10px;
}
.page_flow .flow .content .content_block dt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #1d80df;
}
.page_flow .flow .content .content_block dd {
  font-size: 14px;
}
.page_flow .flow .content .content_text {
  font-size: 16px;
}
.page_flow .flow .content .content_text.mlrauto {
  margin: 0 auto;
}
.page_flow .flow .content .content_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.page_flow .flow .content .content_right {
  flex-basis: 30%;
}
.page_flow .flow .content .bgr_blueLight {
  background-color: #ebf7ff;
}
.page_flow .flow .content .pd30 {
  padding: 30px;
}
.page_flow .flow .bottom_nav .container {
  background-color: transparent;
}

.page_support .support {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_support .support > section {
  padding: 30px 0 30px;
}
@media screen and (min-width: 768px) {
  .page_support .support > section {
    padding: 30px 0 60px;
  }
}
.page_support .support .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_support .support .container {
    padding: 20px 7.2%;
    margin: 0 auto;
  }
}
.page_support .support .container_item {
  max-width: 1026px;
  width: 100%;
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_support .support .container_item {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    margin: 20px auto;
  }
}
.page_support .support .item {
  background-color: #fff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .page_support .support .item {
    padding: 20px;
  }
}
.page_support .support .item .item_wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-align: center;
}
.page_support .support .item .item_wrap h3 {
  font-weight: bold;
  font-size: 18px;
  color: #1d80e2;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page_support .support .item .item_wrap h3 {
    font-size: 24px;
  }
}
.page_support .support .item .item_wrap .img {
  margin: 0 auto;
}
.page_support .support .item .item_wrap .img img {
  width: auto;
}
.page_support .support .item .item_wrap .price {
  color: #ff322e;
  font-size: 27px;
  font-family: "Outfit", sans-serif;
  padding: 10px 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_support .support .item .item_wrap .price {
    font-size: 37px;
  }
}
.page_support .support .item .item_wrap .price small {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .page_support .support .item .item_wrap .price small {
    font-size: 19px;
  }
}
.page_support .support .item .item_wrap .price_comment {
  color: #ff322e;
  margin-top: -20px;
  margin-bottom: 10px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_support .support .item .item_wrap .price_comment {
    font-size: 16px;
  }
}
.page_support .support .item .item_wrap ul {
  text-align: left;
  font-size: 14px;
  list-style-type: square;
  list-style-position: outside;
  margin: 0;
  padding: 0 0 0 20px;
}
@media screen and (min-width: 768px) {
  .page_support .support .item .item_wrap ul {
    font-size: 16px;
  }
}
.page_support .support .item .item_wrap ul li {
  line-height: 1.5;
}
.page_support .support .item_comment {
  background-color: #fff;
  color: #1d80e2;
  padding: 20px;
  max-width: 1026px;
  width: 100%;
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .page_support .support .item_comment {
    margin: 20px auto;
  }
}
.page_support .support .item_comment p {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_support .support .item_comment p {
    font-size: 16px;
  }
}
.page_support .support .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_support .support .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_support .support .content {
  width: 100%;
  max-width: 780px;
  padding: 0 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 10px;
}
@media screen and (min-width: 768px) {
  .page_support .support .content {
    flex-direction: row;
  }
}
.page_support .support .content .content_title {
  text-align: center;
  width: 100%;
}
.page_support .support .content .content_title h2 {
  font-size: 18px;
  color: #1d80e2;
  text-align: center;
  margin: 10px auto;
  font-weight: 500;
  line-height: 1.5;
}
.page_support .support .content .content_title h2.color_normal {
  color: #606060;
}
.page_support .support .content .content_title h2.color_normal strong {
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_title h2 {
    font-size: 27px;
  }
}
.page_support .support .content .content_title h2.text_left {
  text-align: left;
}
.page_support .support .content .content_img {
  display: flex;
  gap: 10px 10px;
  justify-content: center;
  margin: 0 auto;
}
.page_support .support .content .content_full {
  margin-bottom: 1em;
  font-size: 14px;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_full {
    font-size: 16px;
  }
}
.page_support .support .content .content_full h2 {
  flex-basis: 100%;
  font-size: 20px;
  color: #1d80e2;
  text-align: center;
  margin: 20px auto;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.page_support .support .content .content_full h2 strong {
  color: #ff7400;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_full h2 {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
}
.page_support .support .content .content_full h2.mt50 {
  margin-top: 50px;
}
.page_support .support .content .content_full h3 {
  color: #1d80e2;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0;
}
.page_support .support .content .content_full .img {
  margin: 0 auto;
}
.page_support .support .content .content_full .img img {
  margin: 0 auto;
}
.page_support .support .content .content_full p {
  text-align: left;
  margin-bottom: 1em;
}
.page_support .support .content .content_full .small {
  margin: 10px auto;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_full .small {
    font-size: 14px;
  }
}
.page_support .support .content .content_full .small.text_left {
  text-align: left;
}
.page_support .support .content .content_full .content_block {
  margin: 20px auto;
  border: 1px solid #1d80df;
  padding: 10px;
}
.page_support .support .content .content_full .content_block dt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #1d80df;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_full .content_block dt {
    font-size: 18px;
  }
}
.page_support .support .content .content_full .content_block dd {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_full .content_block dd {
    font-size: 16px;
  }
}
.page_support .support .content .content_full .content_block dd span {
  display: block;
}
.page_support .support .content .content_left {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.page_support .support .content .content_left p {
  text-align: left;
}
.page_support .support .content .content_right {
  flex-basis: 30%;
}
.page_support .support .content .content_right .bgr {
  background-color: #ebf7ff;
  padding: 10px 20px;
  margin: 0 auto;
}
.page_support .support .content .btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
  margin: auto;
}
.page_support .support .content .btn_list li {
  flex-basis: content;
}
.page_support .support .content .btn_detail {
  width: 100%;
}
.page_support .support .content .btn_detail a {
  width: 180px;
  box-sizing: border-box;
  padding: 9px 10px 9px 0;
  border: 1px solid #1d80e2;
  background-color: #fff;
  color: #1d80e2;
  font-size: 16px;
  margin: 0 auto;
}
.page_support .support .content .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_support .support .content .btn_detail a:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_support .support .content .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_support .support .content table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0 auto;
}
.page_support .support .content table thead tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 5px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page_support .support .content table thead tr th {
    font-size: 16px;
  }
}
.page_support .support .content table tbody tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 5px;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .page_support .support .content table tbody tr th {
    font-size: 20px;
    padding: 10px;
    letter-spacing: 0;
  }
}
.page_support .support .content table tbody tr th small {
  margin-top: 5px;
  display: block;
  font-size: 10px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_support .support .content table tbody tr th small {
    font-size: 15px;
  }
}
.page_support .support .content table tbody tr td {
  border: 1px solid #20a5eb;
  border-collapse: collapse;
  background-color: #fff;
  padding: 5px;
  font-weight: 500;
  font-size: 18px;
  color: #1d80e2;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_support .support .content table tbody tr td {
    font-size: 26px;
    padding: 10px;
  }
}
.page_support .support .content table tbody tr td span.bar {
  margin: auto;
  display: grid;
  place-content: center;
  height: 2px;
  width: 40%;
  background-color: #20a5eb;
}
.page_support .support .content .small {
  text-align: center;
  margin: 0 auto;
}
.page_support .support .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0 5px;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_support .support .content .content_information {
    font-size: 20px;
  }
}
.page_support .support .bottom_nav .container {
  background-color: transparent;
}

.page_area .area {
  background-color: #ebf7ff;
  padding: 20px 10px;
}
.page_area .area > section {
  padding: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .page_area .area > section {
    padding: 0 0 60px;
  }
}
.page_area .area .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_area .area .container {
    padding: 20px 7.2%;
    margin: 0 auto;
  }
}
.page_area .area .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_area .area .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_area .area .content {
  width: 100%;
  max-width: 780px;
  padding: 20px 0;
  margin: 0 auto;
}
.page_area .area .content .content_full {
  margin-bottom: 1em;
  font-size: 14px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_area .area .content .content_full {
    font-size: 16px;
  }
}
.page_area .area .content .content_full h3 {
  color: #00c492;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #00c492;
}
@media screen and (min-width: 768px) {
  .page_area .area .content .content_full h3 {
    font-size: 21px;
  }
}
.page_area .area .content .content_full .img {
  margin: 0 auto;
}
.page_area .area .content .content_full .img img {
  margin: 0 auto;
}
.page_area .area .content .content_full p {
  text-align: left;
  margin-bottom: 1em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_area .area .content .content_full p {
    font-size: 17px;
  }
}
.page_area .area .content_information {
  font-size: 14px;
  text-align: center;
  color: #00c492;
  padding: 20px 0 5px;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_area .area .content_information {
    font-size: 21px;
  }
}
.page_area .area table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.page_area .area table tbody tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 20px;
  font-weight: bolc;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page_area .area table tbody tr th {
    font-size: 19px;
    letter-spacing: 0;
  }
}
.page_area .area table tbody tr td {
  text-align: left;
  border: 1px solid #20a5eb;
  border-collapse: collapse;
  padding: 20px 30px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_area .area table tbody tr td {
    font-size: 18px;
  }
}
.page_area .area table tbody tr td strong {
  color: #1d80e2;
  font-weight: 500;
}
.page_area .area table tbody tr td .img {
  padding: 20px 0;
}
.page_area .area table tbody tr td .number {
  font-family: "Outfit", sans-serif;
}
.page_area .area table tbody tr td .btn_detail {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 1em 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .page_area .area table tbody tr td .btn_detail {
    text-align: left;
  }
}
.page_area .area table tbody tr td .btn_detail a {
  width: auto;
  box-sizing: border-box;
  padding: 9px 30px;
  border: 1px solid #1d80e2;
  background-color: #fff;
  color: #1d80e2;
  font-size: 12px;
  margin: 0 auto;
}
.page_area .area table tbody tr td .btn_detail a::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
}
.page_area .area table tbody tr td .btn_detail a:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_area .area table tbody tr td .btn_detail a:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
@media screen and (min-width: 768px) {
  .page_area .area table tbody tr td .btn_detail a {
    font-size: 16px;
  }
}
.page_area .area table tbody tr:nth-child(odd) td {
  background-color: #ebf7ff;
}
@media screen and (max-width: 767px) {
  .page_area .area table tbody tr tbody {
    display: block;
    width: auto;
    overflow-x: auto;
    white-space: nowrap;
  }
  .page_area .area table tbody tr th {
    display: block;
    width: 100%;
  }
  .page_area .area table tbody tr tbody tr {
    display: inline-block;
    margin: 0 -3px;
    width: auto;
  }
  .page_area .area table tbody tr td {
    display: block;
    border: none;
  }
}
.page_area .area .bottom_nav .container {
  background-color: transparent;
}

.page_qa .qa {
  background-color: #ebf7ff;
  padding: 30px 10px;
}
.page_qa .qa > section {
  padding: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .page_qa .qa > section {
    padding: 0 0 60px;
  }
}
.page_qa .qa .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ebf7ff;
}
.page_qa .qa .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 40px 0;
  margin: 0 auto;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_qa .qa .content_information {
    font-size: 20px;
  }
}

.page_showroom .showroom {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_showroom .showroom > section {
  padding: 30px 0 30px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom > section {
    padding: 30px 0 60px;
  }
}
.page_showroom .showroom .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .container {
    padding: 20px 7.2%;
    margin: 0 auto;
  }
}
.page_showroom .showroom .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_showroom .showroom .content {
  width: 100%;
  max-width: 780px;
  padding: 0 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content {
    margin: 0 auto 30px;
  }
}
.page_showroom .showroom .content.content_wrap {
  border: 1px solid #1d80e2;
}
.page_showroom .showroom .content .content_img {
  margin: 0 auto;
}
.page_showroom .showroom .content .content_img .img {
  padding: 0 10px;
}
.page_showroom .showroom .content .content_img figure img {
  margin: 0 auto;
}
.page_showroom .showroom .content .content_img figure figcaption {
  margin-left: auto;
  font-size: 12px;
  text-align: right;
  font-weight: bold;
  color: #1d80e2;
}
.page_showroom .showroom .content .content_full {
  margin-bottom: 1em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_full {
    font-size: 17px;
  }
}
.page_showroom .showroom .content .content_full h2 {
  width: 100%;
  font-size: 16px;
  color: #1d80e2;
  text-align: center;
  margin: 20px auto;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.page_showroom .showroom .content .content_full h2 strong {
  color: #ff7400;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_full h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.page_showroom .showroom .content .content_full h2.mt50 {
  margin-top: 50px;
}
.page_showroom .showroom .content .content_full h3 {
  color: #1d80e2;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0;
}
.page_showroom .showroom .content .content_full .img {
  margin: 0 auto;
}
.page_showroom .showroom .content .content_full .img img {
  margin: 0 auto;
}
.page_showroom .showroom .content .content_full iframe {
  max-width: 548px;
  width: 100%;
}
.page_showroom .showroom .content .content_full .content_text {
  text-align: center;
  margin-bottom: 1em;
}
.page_showroom .showroom .content .content_full .content_text strong {
  color: #ff322e;
  font-weight: 500;
}
.page_showroom .showroom .content .content_full .small {
  margin: 10px auto;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_full .small {
    font-size: 14px;
  }
}
.page_showroom .showroom .content .content_full .small.text_left {
  text-align: left;
}
.page_showroom .showroom .content .content_block_contant {
  max-width: 620px;
  margin: 0 auto 30px;
  border: 1px solid #1d80e2;
  border-radius: 14px;
  padding: 10px 10px;
}
.page_showroom .showroom .content .content_block_contant .contact_message {
  margin-bottom: 10px;
  letter-spacing: 5px;
  border-radius: 10px;
  background-color: #ebf7ff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_block_contant .contact_message {
    font-size: 20px;
  }
}
.page_showroom .showroom .content .content_block_contant .contact_message strong {
  display: inline-block;
  font-size: 20px;
  color: #ff322e;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_block_contant .contact_message strong {
    font-size: 25px;
  }
}
.page_showroom .showroom .content .content_block_contant .contact_title {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_block_contant .contact_title {
    font-size: 18px;
  }
}
.page_showroom .showroom .content .content_block_contant .contact_freedial {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #1d80e2;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_block_contant .contact_freedial {
    font-size: 48px;
  }
}
.page_showroom .showroom .content .content_block_contant .contact_freedial::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 25px;
  background-image: url(../images/public/icn_freeDial-blue.svg);
  background-size: contain;
  vertical-align: middle;
}
.page_showroom .showroom .content .content_block_contant .contact_text_small {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_block_contant .contact_text_small {
    font-size: 16px;
  }
}
.page_showroom .showroom .content table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content table {
    margin: 0 auto 60px;
  }
}
.page_showroom .showroom .content table tbody tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content table tbody tr th {
    font-size: 20px;
    padding: 10px;
    letter-spacing: 0;
  }
}
.page_showroom .showroom .content table tbody tr th small {
  margin-top: 5px;
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content table tbody tr th small {
    font-size: 14px;
  }
}
.page_showroom .showroom .content table tbody tr td {
  border: 1px solid #20a5eb;
  border-collapse: collapse;
  background-color: #fff;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content table tbody tr td {
    font-size: 18px;
    padding: 20px;
  }
}
.page_showroom .showroom .content table tbody tr td p {
  margin-bottom: 1em;
  text-align: left;
}
.page_showroom .showroom .content table tbody tr td p:last-of-type {
  margin-bottom: 0;
}
.page_showroom .showroom .content table tbody tr td span {
  display: block;
}
.page_showroom .showroom .content table tbody tr td strong {
  font-weight: normal;
  color: #1d80e2;
}
.page_showroom .showroom .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0 5px;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_showroom .showroom .content .content_information {
    font-size: 20px;
  }
}

.page_company .company {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_company .company > section {
  padding: 30px 0 30px;
}
@media screen and (min-width: 768px) {
  .page_company .company > section {
    padding: 30px 0 60px;
  }
}
.page_company .company .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_company .company .container {
    padding: 20px 7.2%;
    margin: 0 auto;
  }
}
.page_company .company .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_company .company .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_company .company .content {
  width: 100%;
  max-width: 780px;
  padding: 0;
  margin: 0 auto;
}
.page_company .company .content table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0 auto 30px;
}
.page_company .company .content table tbody tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page_company .company .content table tbody tr th {
    font-size: 20px;
    padding: 10px;
    letter-spacing: 0;
  }
}
.page_company .company .content table tbody tr td {
  border: 1px solid #20a5eb;
  border-collapse: collapse;
  background-color: #fff;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_company .company .content table tbody tr td {
    font-size: 16px;
    padding: 20px;
  }
}
.page_company .company .content table tbody tr td h2 {
  text-align: left;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .page_company .company .content table tbody tr td h2 {
    font-size: 16px;
    color: #1d80e2;
  }
}
.page_company .company .content table tbody tr td h2 strong {
  color: #606060;
}
.page_company .company .content table tbody tr td p {
  margin-bottom: 1em;
  text-align: left;
  line-height: 2;
}
.page_company .company .content table tbody tr td p:last-of-type {
  margin-bottom: 0;
}
.page_company .company .content table tbody tr td span {
  display: block;
}
.page_company .company .content table tbody tr td strong {
  font-weight: normal;
  color: #1d80e2;
}
.page_company .company .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0 5px;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_company .company .content .content_information {
    font-size: 20px;
  }
}

.page_recruit .recruit {
  background-color: #ebf7ff;
  padding: 30px 10px;
}
.page_recruit .recruit > section {
  padding: 30px 0 0;
}
.page_recruit .recruit .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
.page_recruit .recruit .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_recruit .recruit .section_title span {
  display: inline-block;
}
.page_recruit .recruit .content {
  width: 100%;
  max-width: 780px;
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content {
    font-size: 16px;
    padding: 20px 0;
  }
}
.page_recruit .recruit .content p {
  text-align: left;
  margin-bottom: 1em;
}
.page_recruit .recruit .content p small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content p small {
    margin: 0 auto;
    font-size: 14px;
  }
}
.page_recruit .recruit .content p span {
  display: block;
}
.page_recruit .recruit .content p:last-of-type {
  margin-bottom: 0;
}
.page_recruit .recruit .content p.small {
  text-align: left;
}
.page_recruit .recruit .content .content_list_none {
  list-style-type: none;
  text-align: left;
}
.page_recruit .recruit .content .content_list_diamond {
  margin: 0;
  padding: 0;
}
.page_recruit .recruit .content .content_list_diamond li {
  list-style: none;
  list-style-position: outside;
  margin: 0 0 0.5em 1em;
  padding: 0;
  text-align: left;
}
.page_recruit .recruit .content .content_list_diamond li::before {
  content: "◆";
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-left: -1em;
}
.page_recruit .recruit .content .content_list_circle {
  margin: 0;
  padding: 0;
}
.page_recruit .recruit .content .content_list_circle li {
  list-style: none;
  list-style-position: outside;
  margin: 0 0 0.5em 1em;
  padding: 0;
  text-align: left;
}
.page_recruit .recruit .content .content_list_circle li::before {
  content: "●";
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-left: -1em;
}
.page_recruit .recruit .content .content_list_arrow {
  margin: 0;
  padding: 0;
}
.page_recruit .recruit .content .content_list_arrow li {
  list-style: none;
  list-style-position: outside;
  margin: 0 0 2em 0;
  padding: 0;
  text-align: left;
  position: relative;
}
.page_recruit .recruit .content .content_list_arrow li::after {
  content: "↓";
  width: 1em;
  height: 1em;
  display: inline-block;
  position: absolute;
  bottom: -1em;
  left: 0;
}
.page_recruit .recruit .content .content_list_arrow li:last-of-type::after {
  display: none;
}
.page_recruit .recruit .content .content_list_number {
  margin: 0;
  padding: 0;
}
.page_recruit .recruit .content .content_list_number li {
  list-style: none;
  list-style-position: outside;
  margin: 0 0 0.5em 1em;
  padding: 0;
  text-align: left;
}
.page_recruit .recruit .content .content_list_number li::before {
  content: attr(data-number);
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-left: -1em;
}
.page_recruit .recruit .content .content_block {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0 20px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block {
    flex-direction: row;
  }
}
.page_recruit .recruit .content .content_block ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block ul {
    width: 50%;
  }
}
.page_recruit .recruit .content .content_img {
  margin: 0 auto 30px;
}
.page_recruit .recruit .content .content_img .img {
  padding: 0 10px;
}
.page_recruit .recruit .content .content_title {
  color: #1d80e2;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_title {
    font-size: 24px;
  }
}
.page_recruit .recruit .content .content_subTitle {
  color: #00cba2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_subTitle {
    font-size: 22px;
  }
}
.page_recruit .recruit .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_information {
    font-size: 20px;
  }
}
.page_recruit .recruit .content .img {
  margin: 0 auto 30px;
}
.page_recruit .recruit .content .img img {
  margin: 0 auto;
}
.page_recruit .recruit .content .small {
  margin: 10px auto;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .small {
    font-size: 14px;
  }
}
.page_recruit .recruit .content .small.text_left {
  text-align: left;
}
.page_recruit .recruit .content .content_block_contant {
  max-width: 596px;
  margin: 0 auto 30px;
  border: 1px solid #1d80e2;
  border-radius: 14px;
  padding: 10px 10px;
  font-size: 18px;
  text-align: center;
}
.page_recruit .recruit .content .content_block_contant .contact_message {
  color: #fff;
  margin: 0 auto 20px;
  background-color: #00c492;
  border-radius: 30px;
  padding: 0 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant .contact_message {
    font-size: 16px;
  }
}
.page_recruit .recruit .content .content_block_contant .contact_message p {
  text-align: center;
}
.page_recruit .recruit .content .content_block_contant p {
  padding: 10px 0;
  margin-bottom: 0;
}
.page_recruit .recruit .content .content_block_contant p.tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_recruit .recruit .content .content_block_contant p.tel span {
  color: #1d80e2;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant p.tel span {
    font-size: 18px;
  }
}
.page_recruit .recruit .content .content_block_contant p.tel a {
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #1d80e2;
  line-height: 1;
}
.page_recruit .recruit .content .content_block_contant p.tel a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant p.tel a {
    font-size: 37px;
  }
}
.page_recruit .recruit .content .content_block_contant p.email {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_recruit .recruit .content .content_block_contant p.email span {
  color: #1d80e2;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant p.email span {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant p.email span {
    line-height: 29px;
  }
}
.page_recruit .recruit .content .content_block_contant p.email a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #1d80e2;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_block_contant p.email a {
    font-size: 29px;
  }
}
.page_recruit .recruit .content .content_block_contant p.email a:hover {
  text-decoration: none;
}
.page_recruit .recruit .content .content_block_contant .contact_title {
  color: #1d80e2;
  letter-spacing: 0.5em;
  text-align: center;
}
.page_recruit .recruit .content table {
  border: 1px solid #fff;
  border-collapse: collapse;
  margin: 0 auto 30px;
}
.page_recruit .recruit .content table tbody tr th {
  border: 1px solid #fff;
  border-collapse: collapse;
  background-color: #20a5eb;
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content table tbody tr th {
    font-size: 20px;
    padding: 10px;
    letter-spacing: 0;
  }
}
.page_recruit .recruit .content table tbody tr th small {
  margin-top: 5px;
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content table tbody tr th small {
    font-size: 14px;
  }
}
.page_recruit .recruit .content table tbody tr td {
  border: 1px solid #20a5eb;
  border-collapse: collapse;
  background-color: #fff;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content table tbody tr td {
    font-size: 16px;
    padding: 20px;
  }
}
.page_recruit .recruit .content table tbody tr td p {
  margin-bottom: 1em;
  text-align: left;
}
.page_recruit .recruit .content table tbody tr td p:last-of-type {
  margin-bottom: 0;
}
.page_recruit .recruit .content table tbody tr td span {
  display: block;
}
.page_recruit .recruit .content table tbody tr td strong {
  font-weight: bold;
  color: #1d80e2;
  display: block;
}
.page_recruit .recruit .content table tbody tr td .tel {
  color: #1d80e2;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content table tbody tr td .tel {
    font-size: 31px;
  }
}
.page_recruit .recruit .content table tbody tr td .email {
  color: #1d80e2;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content table tbody tr td .email {
    font-size: 24px;
  }
}
.page_recruit .recruit .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_recruit .recruit .content .content_information {
    font-size: 20px;
  }
}

.page_about .about {
  background-color: #ebf7ff;
  padding: 0 10px 30px;
}
.page_about .about > section {
  padding: 30px 0;
}
.page_about .about .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
.page_about .about .container.wrap {
  border-radius: 15px;
  border: 1px solid #3fb0ec;
  margin-bottom: 30px;
}
.page_about .about .section_img {
  width: 100%;
  max-width: 1026px;
  margin: 0 auto;
}
.page_about .about .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .page_about .about .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_about .about .section_title span {
  display: inline-block;
}
.page_about .about .content {
  width: 100%;
  max-width: 780px;
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page_about .about .content {
    font-size: 16px;
    padding: 20px 0;
  }
}
.page_about .about .content p {
  text-align: left;
  margin-bottom: 1em;
}
.page_about .about .content p small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page_about .about .content p small {
    margin: 0 auto;
    font-size: 14px;
  }
}
.page_about .about .content p span {
  display: block;
}
.page_about .about .content p:last-of-type {
  margin-bottom: 0;
}
.page_about .about .content p.small {
  text-align: left;
}
.page_about .about .content .content_block {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0 20px;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_block {
    flex-direction: row;
  }
}
.page_about .about .content .content_block ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_block ul {
    width: 50%;
  }
}
.page_about .about .content .content_img {
  margin: 30px auto;
}
.page_about .about .content .content_img img {
  margin: 0 auto;
}
.page_about .about .content .content_title {
  color: #1d80e2;
  font-size: 18px;
  font-weight: 500;
  padding: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_title {
    font-size: 22px;
  }
}
.page_about .about .content .content_title strong {
  color: #606060;
  font-weight: bold;
}
.page_about .about .content .content_lead {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_lead {
    font-size: 22px;
  }
}
.page_about .about .content .content_lead strong {
  color: #1d80e2;
}
.page_about .about .content .content_lead.txt_left {
  text-align: left;
}
.page_about .about .content .content_block_right p {
  text-align: right;
  margin-bottom: 0;
}
.page_about .about .content .content_block_right img {
  margin-left: auto;
}
.page_about .about .content .content_block_right .signature {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 10px;
}
.page_about .about .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_information {
    font-size: 20px;
  }
}
.page_about .about .content .content_information {
  font-size: 16px;
  text-align: center;
  color: #00c492;
  padding: 20px 0;
  margin: 0 auto;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page_about .about .content .content_information {
    font-size: 20px;
  }
}

.page_howto .button + .content {
  display: none;
}
.page_howto .button + .content.show {
  display: block;
}
.page_howto .howto {
  background-color: #ebf7ff;
  padding: 30px 10px;
}
.page_howto .howto > section {
  padding: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .page_howto .howto > section {
    padding: 0 0 30px;
  }
}
.page_howto .howto .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_howto .howto .container {
  padding: 0 0 30px 0;
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
  background-color: #fff;
}
.page_howto .howto .container.bgr_transparent {
  background-color: transparent;
}
.page_howto .howto .content {
  width: 100%;
  max-width: 780px;
  padding: 0 10px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content {
    font-size: 16px;
    padding: 20px 0;
  }
}
.page_howto .howto .content p {
  text-align: left;
  margin-bottom: 1em;
}
.page_howto .howto .content p small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content p small {
    margin: 0 auto;
    font-size: 14px;
  }
}
.page_howto .howto .content p span {
  display: block;
}
.page_howto .howto .content p:last-of-type {
  margin-bottom: 0;
}
.page_howto .howto .content p.small {
  text-align: left;
}
.page_howto .howto .content .content_img {
  margin: 30px auto;
}
.page_howto .howto .content .content_img img {
  margin: 0 auto;
}
.page_howto .howto .content .content_title {
  color: #1d80e2;
  font-size: 21px;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_title {
    font-size: 27px;
  }
}
.page_howto .howto .content .content_title strong {
  color: #606060;
  font-weight: bold;
}
.page_howto .howto .content .content_description {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_description {
    font-size: 19px;
    text-align: center;
  }
}
.page_howto .howto .content .content_item {
  padding: 20px 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.page_howto .howto .content .content_item_btn {
  display: grid;
  place-content: center;
  background-color: #fff;
  width: auto;
  height: 50px;
  line-height: 1;
  border-radius: 50px;
  color: #1d80e2;
  padding: 0 20px 0 10px;
  min-width: 159px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  border: 1px solid #1d80e2;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_item_btn {
    width: auto;
    height: 80px;
    line-height: 1;
    border-radius: 50px;
    padding: 0 20px 0 10px;
    min-width: 300px;
    font-size: 26px;
  }
}
.page_howto .howto .content .content_item_btn > small {
  display: block;
  position: absolute;
  bottom: -15px;
  font-size: 10px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_item_btn > small {
    bottom: 5px;
    font-size: 15px;
  }
}
.page_howto .howto .content .content_item_btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  display: inline-block;
  width: 12px;
  height: 6px;
  background-image: url(../images/public/icn_triangleDown-blue.svg);
  background-size: cover;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_item_btn::after {
    right: 20px;
  }
}
.page_howto .howto .content .content_item_btn:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_howto .howto .content .content_item_btn:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_howto .howto .content .content_item_btn:hover small {
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .content .content_item_btn:hover small {
    color: #fff;
  }
}
.page_howto .howto .content .content_item_btn.active {
  background-color: #1d80e2;
  color: #fff;
}
.page_howto .howto .content .content_item_btn.active::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_howto .howto .content .content_item_btn.item_btn_bottom::after {
  background-image: url(../images/public/icn_triangleDown-blue.svg);
  transform: rotate(180deg);
}
.page_howto .howto .content .content_item_btn.item_btn_bottom:hover::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_howto .howto .content .content_item_btn.item_btn_bottom.active::after {
  background-image: url(../images/public/icn_triangleDown-white.svg);
}
.page_howto .howto .accordion {
  max-width: 1026px;
}
.page_howto .howto .accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(1) {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .accordion .accordion_title.acc_title .acc_wrap div:nth-of-type(1) {
    width: 120px;
  }
}
.page_howto .howto .accordion .accordion_content.acc_content .acc_wrap div:nth-of-type(1) {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .accordion .accordion_content.acc_content .acc_wrap div:nth-of-type(1) {
    width: 120px;
  }
}
.page_howto .howto .accordion .accordion_content.acc_content .acc_wrap div:nth-of-type(2) {
  padding: 20px 30px 20px 5px;
}
@media screen and (min-width: 768px) {
  .page_howto .howto .accordion .accordion_content.acc_content .acc_wrap div:nth-of-type(2) {
    padding: 20px 60px 20px 30px;
  }
}
.page_howto .howto .content_list_check {
  margin: 0;
  padding: 0;
}
.page_howto .howto .content_list_check li {
  list-style: none;
  list-style-position: outside;
  margin: 0 0 0.5em 0;
  padding: 0 0 0 18px;
  text-align: left;
  position: relative;
}
.page_howto .howto .content_list_check li::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url(../images/howto/icn_checkbox.svg);
  background-size: contain;
  vertical-align: middle;
}
.page_howto .howto .content_list_check li.none {
  padding: 0;
}
.page_howto .howto .content_list_check li.none::before {
  display: none;
}

/* page_products */
.page_contact a img {
  opacity: 1;
  transition: 0.2s ease-out;
}
.page_contact a img:hover img {
  opacity: 0.8;
}
.page_contact .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .page_contact .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_contact .contact {
  background-color: #ebf7ff;
  padding: 30px 10px;
}
.page_contact .contact .container {
  padding: 20px 10px;
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .container {
    padding: 30px 10px;
  }
}
.page_contact .contact .content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  /* 旧Edge対応 */
  /* IE対応 */
}
.page_contact .contact .content .required {
  color: red;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .required {
    font-size: 14px;
  }
}
.page_contact .contact .content .wpcf7-form > dl {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .wpcf7-form > dl {
    flex-direction: row;
  }
}
.page_contact .contact .content .wpcf7-form > dl:nth-child(odd) {
  background-color: #ebf7ff;
}
.page_contact .contact .content .wpcf7-form > dl dt {
  width: 100%;
  line-height: 1.3;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  color: #1d80e2;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .wpcf7-form > dl dt {
    width: 30%;
  }
}
.page_contact .contact .content .wpcf7-form > dl dd {
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .wpcf7-form > dl dd {
    width: 70%;
  }
}
.page_contact .contact .content .wpcf7-form > dl dd > div:not(:last-child) {
  margin-bottom: 1rem;
}
.page_contact .contact .content .wpcf7-form > dl dd a {
  color: #1d80e2;
  text-decoration: underline;
}
.page_contact .contact .content .wpcf7-form > dl dd a:hover {
  text-decoration: none;
}
.page_contact .contact .content .wpcf7-form > dl dd .postal-code {
  width: 100px;
}
.page_contact .contact .content .wpcf7-text {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #1d80e2;
  background-color: #ebf7ff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .wpcf7-text {
    width: auto;
  }
}
.page_contact .contact .content .input_text_lg {
  width: 100%;
}
.page_contact .contact .content input:focus {
  background-color: #ffffff;
}
.page_contact .contact .content textarea {
  border: 1px solid #1d80e2;
  background-color: #ebf7ff;
  outline: none;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
}
.page_contact .contact .content textarea:focus {
  background-color: #fff;
}
.page_contact .contact .content .selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.page_contact .contact .content .selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #1d80e2;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
  color: #fff;
}
.page_contact .contact .content .selectbox select {
  appearance: none;
  min-width: 240px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #1d80e2;
  border-radius: 3px;
  background-color: #ebf7ff;
  color: #1d80e2;
  font-size: 14px;
  cursor: pointer;
}
.page_contact .contact .content .selectbox select:focus {
  background-color: #fff;
}
.page_contact .contact .content .wpcf7-file {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  padding: 1rem 2rem;
  border: 1px solid #1d80e2;
  border-radius: 5px;
  background-color: #ebf7ff;
  color: #1d80e2;
  font-size: 1em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content .wpcf7-file {
    width: auto;
  }
}
.page_contact .contact .content input.wpcf7-previous,
.page_contact .contact .content input.wpcf7-submit {
  padding: 1rem;
  margin: 1rem auto;
  background-color: #ebf7ff;
  border-radius: 5px;
  border: 1px solid #1d80e2;
  color: #1d80e2;
  font-size: 14px;
  font-weight: bold;
  width: 40%;
  cursor: pointer;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content input.wpcf7-previous,
  .page_contact .contact .content input.wpcf7-submit {
    font-size: 16px;
  }
}
.page_contact .contact .content input.wpcf7-previous:hover,
.page_contact .contact .content input.wpcf7-submit:hover {
  background-color: #1d80e2;
  color: #fff;
}
.page_contact .contact .content .btn-submit {
  width: 100%;
  text-align: center;
}
.page_contact .contact .content .wpcf7-acceptance {
  text-align: center;
  display: block;
  margin: auto;
}
.page_contact .contact .content .wpcf7-url {
  width: 100%;
}
.page_contact .contact .content ::placeholder {
  color: #666;
  font-weight: normal;
}
.page_contact .contact .content ::-ms-input-placeholder {
  color: #666;
  font-weight: normal;
}
.page_contact .contact .content :-ms-input-placeholder {
  color: #666;
  font-weight: normal;
}
.page_contact .contact .content .wpcf7-textarea::placeholder {
  color: #999;
  font-weight: normal !important;
}
.page_contact .contact .content .wpcf7-textarea::-ms-input-placeholder {
  color: #999;
  font-weight: normal !important;
}
.page_contact .contact .content .wpcf7-textarea:-ms-input-placeholder {
  color: #999;
  font-weight: normal !important;
}
.page_contact .contact .btn_freeDial {
  display: none;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial {
    display: block;
    flex-basis: 25%;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial {
    flex-basis: auto;
  }
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial a {
    padding: 0 5px;
    border-radius: 6px;
    background-color: #ff322e;
    border: 1px solid #ff322e;
    height: 65px;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial a {
    max-width: 270px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial a .icn-freeDial {
    width: 100%;
    text-align: justify;
    position: relative;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 24px;
    padding: 4px 0 2px 40px;
    box-sizing: border-box;
    line-height: 1;
  }
  .page_contact .contact .btn_freeDial a .icn-freeDial::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 5px;
    right: 0;
    margin: 0;
    display: inline-block;
    width: 28px;
    height: 16px;
    background-image: url(../images/public/icn_freeDial.svg);
    background-size: cover;
    vertical-align: middle;
    letter-spacing: 3.6px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial a .icn-freeDial::before {
    width: 28px;
    height: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial a .icn-freeDial {
    font-size: 30px;
    padding: 4px 10px 2px 40px;
    box-sizing: border-box;
    line-height: 1;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial a span {
    display: inline-block;
    white-space: nowrap;
  }
  .page_contact .contact .btn_freeDial a span.txt-medium {
    font-weight: 700;
    font-size: 9px;
    color: fff;
    line-height: 14px;
    letter-spacing: 0.5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial a span.txt-medium {
    font-size: 11px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial a span.txt-bold {
    font-weight: 700;
    font-size: 9px;
    line-height: 14px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 930px) {
  .page_contact .contact .btn_freeDial a span.txt-bold {
    font-size: 11px;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .page_contact .contact .btn_freeDial a:hover {
    background-color: transparent;
    color: #ff322e;
  }
  .page_contact .contact .btn_freeDial a:hover .icn-freeDial {
    color: #ff322e;
  }
  .page_contact .contact .btn_freeDial a:hover .icn-freeDial::before {
    background-image: url(../images/public/icn_freeDial-red.svg);
  }
}
.page_contact .contact .content_text {
  display: grid;
  place-items: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content_text {
    font-size: 16px;
  }
}
.page_contact .contact .content_text .btn_freeDial {
  margin: 30px auto;
}
.page_contact .contact .content_title {
  font-size: 20px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 20px;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .page_contact .contact .content_title {
    padding: 20px 0;
  }
}
.page_contact .contact .content_title span {
  display: inline-block;
  color: #1d80e2;
}

.page_line .line {
  background-color: #ebf7ff;
  padding: 0 10px;
}
.page_line .line > section {
  padding: 30px 0 0;
}
.page_line .line .container {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #ebf7ff;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
}
.page_line .line .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .page_line .line .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_line .line .section_title span {
  display: inline-block;
}
.page_line .line .content {
  width: 100%;
  max-width: 1026px;
  background-color: #fff;
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page_line .line .content {
    font-size: 16px;
    padding: 20px 0;
  }
}

/* page_products */
.page_base a img {
  opacity: 1;
  transition: 0.2s ease-out;
}
.page_base a img:hover img {
  opacity: 0.8;
}
.page_base .section_title {
  font-size: 22px;
  font-weight: bold;
  color: #1d80e2;
  text-align: center;
  line-height: 1.25;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .page_base .section_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.page_base .base {
  background-color: #ebf7ff;
}
.page_base .base .container {
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .page_base .base .container {
    padding: 30px 10px;
  }
}
.page_base .base .content {
  max-width: 1026px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .page_base .base .content {
    padding: 30px;
  }
}
.page_base .base .content .wp-block-heading {
  color: #1d80e2;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .page_base .base .content .wp-block-heading {
    font-size: 24px;
  }
}

/*# sourceMappingURL=style.css.map */
