@charset "utf-8";

/*-------reset--------*/
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
header,
footer,
aside,
main,
figure,
figcaption,
nav,
section {
  display: block;
}
body {
  line-height: 1.6;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol,
ul {
  list-style: none;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:focus {
  outline: none;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
table,
td,
th {
  border-collapse: collapse;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}

/*=====pc_mode=====*/
/*------共通------*/
body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 17px;
  color: #333;
}
a {
  transition: 0.2s;
}
img {
  width: 100%;
    display: block;
}
.tb_style {
  display: none;
}
.sp_style {
  display: none;
}
.flex {
  display: flex;
}
.bold {
  font-weight: bold;
}
.white {
  color: #fff;
}
.content_wrap {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.fs-small {
  font-size: x-small;
}

/*======header=====*/
/*------header_nav------*/
#sp_nav,
.sp_header {
  display: none;
}
#header_nav {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 600;
  top: 0;
}
#header_nav > .flex {
  justify-content: space-between;
  align-items: center;
}
a.top_logo {
  display: block;
  width: 360px;
  margin-left: 15px;
}
ul.pc_nav {
  align-items: center;
}
ul.pc_nav li {
  margin-right: 2em;
}

li.line_style {
  margin-right: 2em;
}
li.line_style a {
  font-size: 17px;
  display: block;
  transition: .5s;
  position: relative;
}
li.line_style a:hover {
  opacity: 1;
}
li.line_style a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #ff9b00;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
li.line_style a:hover::after {
  transform: scale(1, 1);
}

ul.pc_nav .btn_line a {
  padding: 0.5em 2.3em 0.5em 1.5em;
  font-size: 16px;
  box-shadow: none;
}
ul.pc_nav .btn_line a:hover {
  color: #fff;
}
 ul.pc_nav .btn_line a:after {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 100;
  right: 15px;
  top: 17px;
  transition: 0.3s;
}
ul.pc_nav .btn_line a:hover:after {
  right: 10px;
}

/*======main=====*/
/*------main_visual------*/
.main_visual {
    padding-top: 70px;
}
.main_visual h1 {
  width: 100%;
  margin: 0 auto;
}
/*------cta_top------*/
.cta_top {
  background: #06c155;
  padding: 12px;
}
.cta_top > div {
  background: #fff;
  border-radius: 10px;
  padding: 0.8em;
}
.cta_top .heading:after {
  content: "";
  padding: 2px 50px;
  background-image: url("../images/triangle.png");
  background-size: 42px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.cta_top .flex {
  justify-content: center;
  align-items: center;
  font-size: 26px;
}

.btn_line a {
  font-size: 18px;
  display: block;
  background: #06c155;
  position: relative;
  padding: .8em 3.2em .7em 2.5em;
  border-radius: 50px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 3px 3px #008a1e;
  text-align: center;
}
.btn_line a:hover {
  opacity: 1;
}
.btn_line a:after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 100;
  right: 20px;
  top: 24px;
  transition: 0.3s;
}
.btn_line a:hover:after {
  right: 14px;
}

/*------section/foryou------*/
#foryou {
  background-color: #FFE59A;
  background-image: linear-gradient(-90deg, #fff 50%, transparent 50%);
  background-size: 5px 5px;
  padding-top: 40px;
}
.balloon1 {
    text-align: center;
  position: relative;
    margin: 1.5em auto;
  padding: 7px 10px;
    width: 95%;
  max-width: 1100px;
  color: #fff;
  font-size: 30px;
  background: #fa9600;
  border-radius:40px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 15px solid #fa9600;
}
#foryou h3 {
  font-size: 20px;
  margin-bottom: 0.4em;
}
#foryou > div {
  background-color: #fff;
  border-radius: 20px;
  border: 5px solid #fa9600;
  padding: 25px;
  margin-bottom: 50px;
}
#foryou .image {
  width: 100%;
  max-width: 290px;
  margin: 0 auto 15px;
}
#foryou ul.flex {
  justify-content: space-between;
}
#foryou ul.flex li {
  width: 29%;
  text-align: center;
}
#foryou ul.flex li.middle {
  width: 37%;
  border-right: 5px solid #fa9600;
  border-left: 5px solid #fa9600;
  padding-right: 20px;
  padding-left: 20px;
}
#foryou:after {
  content: "";
  display: block;
  padding: 90px 50%;
  background-image: url("../images/triangle_bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
/*------section/price------*/
#price {
  text-align: center;
    background-image: url("../images/price_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}
#price h2 {
  font-size: 32px;
  color: #bd3c00;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
}
#price h2:after {
  content: "";
  display: block;
  padding: 5px;
  background-image: url("../images/wave.png");
  background-size: 310px;
  background-repeat: no-repeat;
  background-position: center;
}
#price .heading {
  background-color: #bd3c00;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  padding: 0.6em 1.5em;
  line-height: 1.4;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 30px;
    max-width: 90%;
}
#price .note{
    font-size: 15px;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto 20px;
}
#price .heading span {
  font-size: 32px;
  color: #fff500;
}
#price .under_text {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto 20px;
}
#price h3 {
  font-size: 18px;
  padding: 0.1em 4em;
  border: solid 1px #333;
  border-radius: 50px;
  background: #fff;
  display: inline-block;
  margin-bottom: 30px;
}
#price .pricelist {
  width: 75%;
  max-width: 1100px;
  margin: 60px auto 20px;
}

#price .pricelist table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #ffffff;
  margin-bottom: 70px;
    font-size: 16px;
}

#price .pricelist table th,
#price .pricelist table td {
  line-height: 1.2;
  vertical-align: middle;
}

#price .pricelist table th {
  text-align: center;
  font-weight: bold;
  padding: 1em;
  border: 1px #666666 solid;
  background: #eff5f5;
}
#price .pricelist table td {
  text-align: center;
  font-weight: bold;
  padding: 1em;
  border: 1px #666666 solid;
}

#price .pricelist table tr:nth-child(3) td {
  background-color: #fff5b3;
}

#price .pricelist table .cheaper {
  color: #bd3c00;
}

/*------section/price------*/
#line {
  background-color: #dfeec7;
  background-image: linear-gradient(-90deg, #fff 50%, transparent 50%);
  background-size: 4px 4px;
  padding-top: 100px;
  padding-bottom: 100px;
}
#line > div {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
    font-size: 16px;
    line-height: 1.5;
}
#line h2 {
  background-color: #00b84a;
  padding: 0.2em;
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 50px;
}
#line ul {
  flex-wrap: wrap;
  justify-content: center;
}
#line ul li {
  width: 30%;
  margin-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
#line .image {
  margin-bottom: 20px;
}
#line .arrow {
  width: 36px;
  margin-top: 10%;
}

/*------section/qanda------*/
#faq {
  background-color: #edece8;
  padding-top: 50px;
  padding-bottom: 130px;
  background-image: url("../images/ill_m2.png");
  background-repeat: no-repeat;
  background-size: 150px;
  background-position: right 30% bottom;
}
#faq .midashi{
  font-size: 22px;
  line-height: 1.4;
  background-color: #dbd9d1;
  padding: 0.2em;
  text-align: center;
  margin-bottom: 1em;
    margin-top: 2em;
    font-weight: bold;
}
#faq .acMenu {
  margin-bottom: 80px;
}
.acMenu dl {
  margin-bottom: 20px;
  box-shadow: 0 2px 2px rgb(0 0 0 / 3%);
}
.acMenu dt {
  background-color: #fff;
  position: relative;
  padding: 1em;
  padding-left: 3em;
  font-size: 18px;
    line-height: 1.4;
  background-image: url("../images/icon_q.png");
  background-repeat: no-repeat;
  background-size: 36px;
  background-position: left 0.5em center;
  cursor: pointer;
}
.acMenu dt:after,
.acMenu dt:before {
  content: "";
  position: absolute;
  right: 1.8em;
  top: 1em;
  width: 3px;
  height: 25px;
  background-color: #000;
  transition: all 0.3s;
}
.acMenu dt::after {
  transform: rotate(90deg);
}
.acMenu dt.click.open:before {
  transform: rotate(90deg);
}
.acMenu dd {
  background-color: #fff8cf;
  padding: 1em;
  padding-left: 3.5em;
  background-image: url("../images/icon_a.png");
  background-repeat: no-repeat;
  background-size: 38px;
  background-position: left 0.5em center;
}
.acMenu dd a {
  color: #256669;
  text-decoration: underline;
}
.btn_faq a {
  font-size: 18px;
  display: block;
  background: #ffcc00;
  position: relative;
  padding: 0.6em;
  border-radius: 50px;
  width: 65%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 3px 3px #e29600;
  text-align: center;
}
.btn_faq a:hover {
  opacity: 1;
}
.btn_faq a:after {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  z-index: 100;
  right: 35px;
  top: 19px;
  transition: 0.3s;
}
.btn_faq a:hover:after {
  right: 28px;
}

/*======footer=====*/
footer {
  padding-bottom: 110px;
   background-image: linear-gradient(183deg, transparent, #fffefb);
}
.footer_wrap {
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 70px;
  margin-bottom: 30px;
}
.footer_wrap > .flex {
  justify-content: space-between;
}
footer .r_content {
  width: 320px;
}
footer .l_content {
  text-align: left;
}
footer .l_content h2 {
  font-size: 18px;
  padding-left: 0.5em;
  border-left: 3px solid #666;
  line-height: 1.2;
  margin-bottom: 1em;
}
footer .l_content .company_name a {
  color: #006596;
  font-size: 18px;
  margin-bottom: 1em;
  text-decoration: underline;
  padding-bottom: 0.5em;
}
footer .l_content p {
  margin-bottom: 0.5em;
}
footer .l_content th {
  padding-bottom: 0.3em;
  padding-right: 1em;
}
.footer_logo {
  width: 200px;
  margin: 0 auto 10px;
}
.copyright {
  text-align: center;
  font-size: 14px;
}

/*------cta_fixed-----*/
.cta_fixed {
  opacity: 0;
  position: fixed;
  bottom: 0;
  transition: all 0.65s;
  width: 100%;
  box-shadow: 0 0 8px rgb(0 0 0 / 10%);
}
.cta_fixed .cta_top {
  background: #fff;
  border-bottom: 5px solid #fa9e00;
}
.cta_fixed .cta_top > div {
  padding: 0.2em;
}
.cta_fixed .btn_line a {
  padding: 0.5em 3em 0.5em 2.5em;
}
.cta_fixed .btn_line a:after {
  top: 17px;
}

.isActive {
  opacity: 1;
}