@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
ul {
  margin: 0;
  padding-left: 0;
}
ul li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
hr {
  border: none;
  height: 1px;
  background-color: #ccc;
}
h2 {
  font-weight: bold;
  font-size: 42px;
  text-align: center;
  margin-bottom: 25px;
}
h2 span {
  font-size: 20px;
  font-weight: bold;
  color: #009689;
  display: block;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
}
h3 {
  font-size: 18px;
  font-weight: bold;
  border-left: 3px solid #009689;
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
}
.smp {
  display: none;
}
@media screen and (max-width:520px) {
  .pc {
    display: none;
  }
  .smp {
    display: block;
  }
}
/* ===== 共通 ===== */
.header {
  background: #fff;
}
.header-inner {
  max-width: 1366px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  font-size: 20px;
  transition: .3s;
}
/* ===== PCメニュー ===== */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #333;
}
.menu li a:hover {
  background: #f5f5f5;
}
/* ===== ハンバーガー初期非表示 ===== */
.menu-btn {
  display: none;
}
.menu-icon {
  display: none;
}
.menu ul li:nth-child(5) a {
  color: #FF821A;
  font-size: 19px;
  font-weight: bold;
  position: relative;
}
.menu ul li:nth-child(5) a img {
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.menu ul li:nth-child(6) {}
.menu ul li:nth-child(6) a {
  color: #FFF;
  background-color: #009689;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 12px;
  text-align: center;
  margin-top: 15px;
}
/* ===== SP表示（520px以下） ===== */
@media (max-width: 520px) {
  /* ハンバーガー表示 */
  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 20px;
    position: absolute;
    right: 0;
  }
  /* 三本線 */
  .navicon {
    background: #333;
    display: block;
    height: 2px;
    width: 26px;
    position: relative;
    transition: .3s;
  }
  .navicon:before, .navicon:after {
    content: "";
    background: #333;
    height: 2px;
    width: 26px;
    position: absolute;
    transition: .3s;
  }
  .navicon:before {
    top: -7px;
  }
  .navicon:after {
    top: 7px;
  }
  /* メニューを縦に */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: .3s;
  }
  .menu ul {
    flex-direction: column;
  }
  .menu li a {
    border-top: 1px solid #eee;
    padding: 15px;
    font-size: 15px;
  }
  /* 開いた時 */
  .menu-btn:checked ~ .menu {
    max-height: 300px;
  }
  /* ×アニメーション */
  .menu-btn:checked + .menu-icon .navicon {
    background: transparent;
  }
  .menu-btn:checked + .menu-icon .navicon:before {
    transform: rotate(45deg);
    top: 0;
  }
  .menu-btn:checked + .menu-icon .navicon:after {
    transform: rotate(-45deg);
    top: 0;
  }
  .menu ul li:nth-child(6) {
    border-bottom: none;
  }
  .menu ul li:nth-child(6) a {
    color: #FFF;
    background-color: #009689;
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 0px;
    width: 65%;
    margin-left: 15px;
  }
}
#hero {
  width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
#hero .pc {
  position: relative;
}
#hero .pc strong {
  font-size: 59px;
  font-weight: bold;
  color: #009689;
  position: absolute;
  top: 139px;
  left: 87px;
  letter-spacing: 0.01em;
}
#hero .pc strong b {
  font-size: 30px;
}
#hero .pc .p1 {
  font-size: 18px;
  color: #AA7624;
  font-weight: bold;
  position: absolute;
  top: 240px;
  left: 155px;
  line-height: 1.6;
}
#hero .pc .p2 {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  position: absolute;
  top: 355px;
  left: 97px;
  line-height: 1.6;
}
@media screen and (max-width:520px) {
  #hero {
    width: 100%;
  }
  #hero img {
    width: 100%;
    height: auto;
  }
}
#topics {
  width: 1000px;
  margin-top: 30px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
#topics ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 25px;
}
#topics ul li {
  background-color: #FFFEF4;
  border: 1px solid #80BEB8;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  width: 27%;
}
#topics h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #009689;
  border-left: none;
  padding-left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
}
#topics li img {
  margin-top: 15px;
  margin-bottom: 15px;
}
#topics li p {
  color: #777;
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 20px;
}
@media screen and (max-width:520px) {
  #topics {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  #topics ul {
    flex-wrap: wrap;
  }
  #topics ul li {
    width: 100%;
  }
}
#reason2 {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
#reason2 p {
  font-size: 18px;
  text-align: center;
  color: #555;
}
#reason2 ul {
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 30px;
  gap: 20px;
}
#reason2 ul li {
  background-color: #FFFEF4;
  border: 1px solid #80BEB8;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  width: 30%;
}
#reason2 ul li h3 {
  padding-left: 0;
  font-size: 20px;
  border-left: none;
  font-weight: bold;
  color: #009689;
  margin-top: 0;
  margin-bottom: 10px;
}
#reason2 ul li p {
  font-size: 15px;
  color: #333;
  left: 1.5;
  padding-bottom: 25px;
  text-align: left;
}
@media screen and (max-width:520px) {
  #reason2 {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  #reason2 ul {
    flex-wrap: wrap;
  }
  #reason2 ul li {
    width: 100%;
  }
}
#reason {
  background-color: #009689;
  padding: 50px 80px;
}
#reason .inner {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
#reason h4 {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}
#reason h4 strong {
  color: #FFEC5D;
}
#reason p {
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
#reason ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: space-around;
  margin-top: 25px;
  margin-bottom: 10px;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
#reason ul li {
  width: 40%;
}
#reason ul li a {
  background-color: #FF821A;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 13px;
  display: block;
  position: relative;
}
#reason ul li a:before {
  content: "";
  display: block;
  width: 28px;
  height: 25px;
  position: absolute;
  top: 10px;
  left: 25px;
  background: url("../img/icon_mail.png");
}
#reason ul li a.tel {
  border: 1px solid #fff;
  background-color: #009689;
}
#reason ul li a.tel::before {
  background: url("../img/icon_tel2.png");
  width: 27px;
  left: 50px;
}
#reason .pc {
  position: absolute;
  top: -20px;
  left: 88px;
}
@media screen and (max-width:520px) {
  #reason {
    padding: 35px 0px;
  }
  #reason h4 {
    font-size: 28px;
  }
  #reason p {
    font-size: 16px;
  }
  #reason .inner {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
  #reason ul {
    width: 100%;
    flex-wrap: wrap;
  }
  #reason ul li {
    width: 80%;
  }
  #reason ul li a {
    margin-left: auto;
    margin-right: auto;
  }
}
#faq {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
.accordion {
  margin: 40px auto;
  font-family: sans-serif;
}
.item {
  border: 1px solid #009689;
  margin-bottom: 15px;
  border-radius: 10px;
}
.item input {
  display: none;
}
.item label {
  display: block;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
}
.item label b {
  color: #009689;
  font-weight: bold;
  font-size: 36px;
  margin-right: 7px;
}
/* 開閉アイコン */
.item label::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 20px;
  transition: 0.3s;
}
/* 開いた時 */
.item input:checked + label::after {
  content: "−";
}
.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
}
.content b {
  color: #FF821A;
  font-weight: bold;
  font-size: 36px;
  margin-right: 7px;
}
/* 開いた状態 */
.item input:checked + label + .content {
  max-height: 200px;
  padding: 15px;
  border-top: 1px solid #009689;
}
@media screen and (max-width:520px) {
  #faq {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}
#flow {
  width: 100%;
  background-color: #F5FBFA;
  padding-top: 50px;
}
#flow .inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
#flow p {
  font-size: 18px;
  text-align: center;
  color: #333;
}
#flow ul {
  padding: 0;
  margin: 0;
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}
#flow ul li {
  border: 3px solid #009689;
  background-color: #FFFEF4;
  padding: 10px;
  border-radius: 15px;
  width: 46%;
}
#flow table {
  width: 100%;
}
#flow table tr td:nth-child(1) {
  width: 140px;
  text-align: center;
  vertical-align: middle;
}
#flow table tr td p {
  color: #333;
  line-height: 1.8;
  font-size: 15px;
  text-align: left;
}
#flow ul li h3 {
  border-left: none;
  color: #009689;
  font-size: 20px;
  padding-left: 0px;
  margin-bottom: 5px;
  margin-top: 0px;
}
@media screen and (max-width:520px) {
  #flow {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
  #flow .inner {
    width: 100%;
  }
  #flow ul {
    width: 100%;
  }
  #flow ul li {
    width: 100%;
  }
  #flow ul li h3 {
    font-size: 18px;
  }
}
#syaken {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding-bottom: 100px;
}
#syaken table {
  border-collapse: collapse;
  width: 1000px;
  margin-bottom: 10px;
}
#syaken td, #syaken th {
  border: 1px solid #009689;
}
#syaken th {
  padding: 0px;
}
#syaken td {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  font-size: 18px;
}
#syaken tr td:nth-child(1) {
  font-weight: bold;
  color: #009689;
  white-space: nowrap;
  background-color: #F5FBFA;
  font-size: 18px;
  text-align: left;
}
#syaken tr:nth-child(1) th:nth-child(1) {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
#syaken tr:nth-child(8) td {
  font-size: 25px;
  background-color: #009689;
  color: #FFEC5D;
  border-left: 2px solid #fff;
  font-weight: bold;
}
#syaken tr:nth-child(8) td:nth-child(1) {
  color: #fff;
  font-size: 18px;
  border-left: 1px solid #009689;
}
#syaken i {
  color: #707070;
  font-size: 15px;
  font-style: normal;
}
@media screen and (max-width:520px) {
  #syaken {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}
#contact {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
#contact center {
  font-size: 18px;
}
@media screen and (max-width:520px) {
  #contact {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}
#cta {
  background-color: #F5FBFA;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}
#cta .car {
  position: absolute;
  top: 200px;
  right: 20%;
}
#cta .btn {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 25px;
  background-color: #FF821A;
  text-align: center;
  border-radius: 25px;
  position: relative;
  top: -70px;
}
@media screen and (max-width:520px) {
  #cta {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  #cta .car {
    display: none;
  }
  #cta .main {
    width: 100%;
    height: auto;
  }
  #cta .btn {
    width: 80%;
    height: auto;
    position: relative;
    top: -22%;
    padding: 10px;
    font-size: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }
}
#pay {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
#pay ul {
  display: flex;
  justify-content: space-around;
}
#pay ul li {
  width: calc(50% - 20px);
  padding-right: 20px;
  line-height: 1.6;
}
#pay ul li dd {
  margin-bottom: 20px;
}
#pay ul li dt {
  width: 100%;
  height: 30px;
  font-weight: bold;
  align-items: center;
  display: flex;
}
#pay ul li dt img {
  margin-right: 10px;
}
#pay ul li dd {
  margin-top: 5px;
}
@media screen and (max-width:520px) {
  #pay {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  #pay ul {
    flex-wrap: wrap;
  }
  #pay ul li {
    width: 100%;
  }
}
footer {
  width: 1000px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}
footer ul {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
footer ul .pt1 {
  width: 265px;
  margin-right: 100px;
}
footer ul .pt1 span {
  display: block;
  font-size: 11px;
  color: #7E7E7E;
  margin-top: 5px;
  margin-bottom: 10px;
}
footer ul .pt1 b {
  font-weight: normal;
  line-height: 1.5;
}
footer ul .pt2, footer ul .pt3 {
  display: block;
  width: 150px;
  margin-top: 10px;
  line-height: 2;
}
footer ul .pt2 a, footer ul .pt3 a {
  color: #000;
}
footer ul .pt2 b, footer ul .pt3 b {
  font-size: 16px;
  display: block;
}
footer ul .pt4 {
  display: block;
  width: 200px;
}
footer ul .pt4 img {
  margin-top: 10px;
}
footer ul .pt4 .btn {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #009689;
  padding: 13px 25px;
  border-radius: 25px;
  float: right;
  margin-top: 10px;
}
@media screen and (max-width:520px) {
  footer {
    width: 100%;
  }
  footer ul {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: wrap;
  }
  footer ul .pt1 {
    width: 100%;
    margin-right: 0px;
  }
  footer ul .pt2, footer ul .pt3 {
    width: 50%;
  }
  footer ul .pt4 {
    width: 100%;
  }
  footer ul .pt4 img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  footer ul .pt4 .btn {
    margin-left: auto;
    margin-right: auto;
    float: none;
    display: block;
    width: 100px;
  }
}
footer p {
  text-align: center;
  padding-top: 20px;
  clear: both;
  display: block;
}
.contact {
  margin-top: 25px;
}
.contact th {
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  width: 250px;
}
.contact th, .contact td {
  padding: 10px;
}
.contact th span {
  background-color: #FF821A;
  color: #fff;
  font-size: 13px;
  float: right;
  padding: 1px 5px;
  border-radius: 10px;
  font-weight: normal;
}
.hidden-fields-container {
  display: none;
}
.wpcf7-text, .wpcf7-textarea {
  padding: 10px;
  width: 100%;
  display: block;
}
.wpcf7-select {
  width: 100%;
  display: block;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #999;
}
.wpcf7-submit {
  background-color: #FF821A;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 35px;
  border-radius: 16px;
  color: #fff;
  display: block;
  margin-top: 15px;
  border: none;
}
.chu {
  font-size: 15px;
  color: #777;
  text-align: center;
  display: block;
}
@media screen and (max-width:520px) {
  .contact {
    width: calc(100% - 30px);
  }
  .contact th, .contact td {
    width: 100%;
    display: block;
  }
}
.screen-reader-response {
  font-size: 18px;
  color: #f00;
  text-align: center;
  padding-top: 30px;
}