@charset "UTF-8";

/* =====================================================================
Common
 =====================================================================*/
:root {
  --black: 51, 51, 51;
  --ltblue: 97, 166, 209;
  --border: rgba(var(--black), .6);
  --contents_width: 1226px;
  --contents_width_with_padding: 1286px;
  --default-font: 'M PLUS Rounded 1c', sans-serif;
  --custom-font: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: var(--custom-font);
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

@media all and (max-width: 767px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  button,
  select,
  option {
    font-size: 1.6rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* Base
================================================ */
html {
  overflow: auto;
}

body {
  min-width: 375px;
  padding-top: 60px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-style: normal;
  color: rgb(var(--black));
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  body {
    /* min-width: var(--contents_width_with_padding); */
    padding-top: 126px;
    font-size: 2rem;
  }
}

/* =====================================================================
Header & Navi
 =====================================================================*/
/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}

.header_wrap {
  width: 100%;
  background-color: #fff;
}

.header_inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0 15px;
  max-width: 1366px;
  height: 90px;
}

@media all and (max-width: 767px) {
  .header_inner {
    height: 60px;
    padding: 0;
  }
}

/* ..l-header-title
================================================ */
.l-header-title {
  text-align: left;
  max-width: 1366px;
  margin: 0 auto;
  font-size: 15px;
  color: #333;
  padding-left: 50px;
  margin-bottom: -20px;
}

@media all and (max-width: 767px) {
  .l-header-title {
    margin: 0 auto;
    font-size: 13px;
    color: #333;
    padding-left: 5px;
    margin-bottom: -2px;
  }
}


/* .l-header-info
================================================== */
.l-header-info {
  z-index: 3;
  width: 408px;
}

.l-header-info__logo {
  width: 100%;
}

@media all and (max-width: 1270px) {
  .l-header-info {
    width: 25vw;
  }
}

@media all and (max-width: 767px) {
  .l-header-info {
    width: 220px;
  }

  .l-header-info__logo {
    width: 204px;
  }
}

/* .l-nav-list (SP)
================================================== */
.l-nav-list {
  display: flex;
  justify-content: flex-end;
}

.l-nav-list__item-link {
  display: block;
}

.l-nav-list__item {
  width: 50px;
}

/* .nav-list_pc (PC)
================================================== */
.nav-list_pc {
  display: flex;
  justify-content: flex-end;
}

.nav-list_pc_item-link {
  display: block;
}

.nav-list_pc_item:not(:first-child) {
  margin-left: 14px;
}

@media all and (max-width: 1270px) {
  .nav-list_pc_item:not(:first-child) {
    margin-left: 0.5vw;
  }
}

/* btn */
.l-nav .nav-list_pc_item-link {
  font-size: 2.1rem;
  padding: 12px 20px;
}

.l-nav .nav-list_pc_item-link .c-btn01__small {
  font-size: 1.2rem;
}

@media all and (max-width: 1270px) {
  .l-nav .nav-list_pc_item-link {
    font-size: 1.5vw;
    padding: 12px 1.5vw;
  }

  .l-nav .nav-list_pc_item-link .c-btn01__small {
    font-size: 1vw;
  }
}

/* tel */
.l-nav .nav-list_pc_item-tel {
  padding-top: 2px;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.2;
}

.l-nav .nav-list_pc_item-tel-link {
  display: block;
}

.l-nav .nav-list_pc_item-time {
  font-size: 1.2rem;
  display: block;
}

.l-nav .tel-note {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

@media all and (max-width: 1270px) {
  .l-nav .nav-list_pc_item-tel {
    font-size: 2.1vw;
  }

  .l-nav .nav-list_pc_item-time {
    font-size: 0.94vw;
  }

  .l-nav .tel-note {
    font-size: 0.7vw;
  }
}

/* .header_nav
================================================== */
.header_nav {
  background-color: rgba(200, 200, 200, 0.3);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* header_nav_ul_pc */
.header_nav_ul_pc {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.header_nav_ul_pc li {
  font-size: 18px;
  line-height: 36px;
  font-weight: bold;
  color: #154788;
}

.header_nav_ul_pc li a {
  color: #154788;
}

@media all and (max-width: 900px) {
  .header_nav_ul_pc li {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header_nav_ul_pc {
    display: none;
  }
}

/* mob-menu */
.mob-menu {
  position: absolute;
  top: 60px;
  right: -100vw;
  width: 100vw;
  padding-top: 30px;
  height: calc(100vh - 90px);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s;
}

.mob-menu.active {
  right: 0vw;
}

.mob-menu .mob-menu-ul {
  margin: 20px;
  padding: 20px 30px;
  background: #f0f0f0;
  border-radius: 20px;
}

.mob-menu .mob-menu-ul li a {
  display: block;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  color: #61A6D1;
}

/* Hamburger button */
.header-humb {
  display: none;
  position: absolute;
  top: 90px;
  right: 10px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  background: #f0f0f0;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.header-humb .header-humb-area {
  transition: all .6s;
  width: 34px;
  height: 34px;
}

.header-humb span {
  display: block;
  transition: all .4s;
  position: absolute;
  left: 4px;
  height: 2px;
  background: #555;
  width: 26px;
}

.header-humb span:nth-of-type(1) {
  top: 8px;
}

.header-humb span:nth-of-type(2) {
  top: 16px;
}

.header-humb span:nth-of-type(3) {
  top: 24px;
}

/* Hamburger button > active */
.header-humb.active .header-humb-area {
  transform: rotate(360deg);
}

.header-humb.active span:nth-of-type(1) {
  top: 16px;
  transform: rotate(-45deg);
}

.header-humb.active span:nth-of-type(2) {
  opacity: 0;
}

.header-humb.active span:nth-of-type(3) {
  top: 16px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .header-humb {
    display: block;
  }
}




/* =====================================================================
Footer
 =====================================================================*/
/* .l-footer
================================================ */
.l-footer {
  position: relative;
  padding: 45px 0;
  background: #3D3D3D;
  color: #fff;
  text-align: center;
  width: 100%;
  min-width: 375px;
  margin: auto;
}

.l-footer a {
  text-decoration: none;
  color: #fff;
}

.l-footer__info-logo {
  max-width: 268px;
  margin: auto;
}

.l-footer__cr {
  margin-top: 12px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2;
}

.l-footer ul {
  padding: 0;
  margin-top: 20px;
}

.l-footer li {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
  list-style: none;
}

.l-footer__info .footer_box {
  display: block;
  min-width: 100%;
  font-size: 2rem;
  margin: 0;
  text-align: center;
}

.l-footer__info .siteMap {
  width: 100%;
}

.footer_contact {
  margin: 40px 0;
}

.footer_contact ul,
.footer_contact div {
  text-align: center;
}

.footer_contact li {
  margin: 0 auto 10px;
  width: 225px;
  padding: 15px 0;
}

.footer_contact .tel {
  font-size: 2.5rem;
}

.footer_contact small {
  font-size: 1rem;
  display: block;
}

.footer_ft {
  margin-top: 70px;
  text-align: center;
  order: 3;
}

.footer_contact .bg-contact {
  background-color: #E8AF13;
}

.footer_contact .bg-line {
  background-color: #1EAC23;
}

@media all and (min-width: 768px) {
  .l-footer {
    padding: 52px 0;
    background: #3D3D3D;
    color: #fff;
    width: 100%;
    min-width: 1226px;
  }

  .l-footer__info {
    display: flex;
    justify-content: space-evenly;
  }

  .l-footer__info-logo {
    max-width: 308px;
  }

  .l-footer__cr {
    margin-top: 30px;
    font-size: 2rem;
    line-height: 2;
  }

  .l-footer__info .footer_box {
    display: flex;
    min-width: 550px;
    font-size: 2rem;
    margin: 0 100px;
    text-align: left;
  }

  .l-footer__info .siteMap {
    width: 50%;
  }

  .footer_contact {
    margin: 0;
  }

  .footer_contact li {
    width: 225px;
    margin-bottom: 10px;
    padding: 5px 0;
  }

  .footer_contact small {
    font-size: 1.2rem;
  }

  .footer_ft {
    order: -1;
  }
}

/* =====================================================================
Common Component
 =====================================================================*/

/* .BreadcrumbList
================================================ */
.BreadcrumbList {
  margin: 0 auto;
  padding: 1px 0 0;
  list-style: none;
  font-size: 1.8rem;
}

.BreadcrumbList ol {
  padding: 0 30px;
  margin: 18px 0;
}

.BreadcrumbList li {
  display: inline;
  list-style: none;
  font-weight: bold;
}

.BreadcrumbList li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.BreadcrumbList li:last-child:after {
  content: '';
}

.BreadcrumbList li a {
  text-decoration: none;
  color: #52b5ee;
}

.BreadcrumbList li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .BreadcrumbList {
    padding: 1px 0 1px;
    font-size: 14px;
    margin-left: 0;
    list-style: none;
  }

  .BreadcrumbList ol {
    padding: 0 10px;
    margin: 5px 0;
  }
}

/* .cate_head_wrap //カテゴリページタイトル
================================================ */
.cate_head_wrap {
  padding: 80px 0;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  background: url(../img/bg_ttl_rep.png) #6994CC;
}

.cate_head_wrap .cate_head_ttl {
  max-width: 80%;
  margin: 0 auto 20px;
  font-size: 48px;
  text-shadow: 0px 3px rgba(0, 0, 0, 0.6);
}

.cate_head_wrap .cate_head_desc {
  font-size: 20px;
  max-width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .cate_head_wrap {
    padding: 50px 0;
  }

  .cate_head_wrap .cate_head_ttl {
    max-width: 90%;
    font-size: 24px;
  }

  .cate_head_wrap .cate_head_desc {
    font-size: 16px;
    max-width: 90%;
  }
}

/* .category-tab //タブ
================================================ */
.category-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 1000px;
  margin: 50px auto;
}

.category-tab li {
  flex: 1;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

.category-tab li a {
  display: block;
  padding: 10px 10px;
  background: #aaa;
  border-radius: 10px;
  box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.category-tab li.cate-active a {
  background: #6994CC;
}

.category-tab li a:hover {
  background: #6994CC;
}

@media screen and (max-width: 767px) {
  .category-tab {
    display: block;
    width: 70%;
    margin: 30px auto;
  }

  .category-tab li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .category-tab li a {
    padding: 3px 5px;
  }
}



/* .cv01
================================================ */
.cv01 {
  background: #fff url(../img/bg_cv01-sp.jpg) no-repeat top/cover;
}

.cv01__inner {
  box-sizing: border-box;
  padding-top: 22px;
  padding-bottom: 19px;
}

.cv01 .cv01__head {
  margin-bottom: 53vw;
  font-size: 40px;
  font-weight: 800;
}

.cv01__head .c-head01__large {
  font-size: 40px;
  font-weight: 800;
}

.cv01__head .marker {
  background: linear-gradient(transparent 50%, #FAE14C 50%);
}

.cv01__tel-link {
  font-size: 1.6rem;
  padding: 11px 11px 8px 18px;
  line-height: 1.1;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  font-weight: 800;
  text-align: center;
}

.cv01__tel-txt {
  display: inline-block;
  text-align: left;
}

.cv01__tel-num {
  font-size: 3.3rem;
  text-align: left;
}

.cv01__btn+.cv01__btn {
  margin-top: 8px;
}

.cv01__btn-list {
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  .cv01 {
    background: transparent url(../img/bg_mainimg01-pc.jpg) no-repeat center/1366px;
  }

  .cv01__inner {
    height: 608px;
    box-sizing: border-box;
    padding: 135px 70px 0;
  }

  .cv01.home-cv01__inner {
    padding: 90px 70px 0;
  }

  .cv01 .cv01__head {
    width: 608px;
    margin-bottom: 22px;
    font-size: 60px;
    font-weight: 800;
    text-align: left;
  }

  .cv01__tel-link {
    background-color: transparent;
    padding: 0;
  }

  .cv01__tel-txt {
    display: block;
    font-size: 2rem;
  }

  .cv01__tel-num {
    font-size: 4.8rem;
    display: block;
    margin-top: 10px;
  }

  .cv01__tel {
    padding: 0 7px;
  }

  .cv01__btn {
    width: 330px;
  }

  .cv01__btn+.cv01__btn {
    margin-top: 0;
  }

  .cv01__btn.contact {
    width: 310px;
    font-size: 2rem;
  }

  .cv01__btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 670px;
    margin: 21px 6px 0;
  }
}

/* simple-cta
================================================ */
.simple-cta {
  width: 1000px;
  margin: 80px auto;
}

.simple-cta .simple-cta-ttl {
  width: 800px;
  margin: 0 auto 30px;
}

/* list */
ul.simple-cta-btn {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

ul.simple-cta-btn li {
  flex: 1;
  line-height: 1;
}

ul.simple-cta-btn li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: calc(100% - 20px);
  padding: 10px 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  background: #1EAC23;
  border-radius: 5px;
}

ul.simple-cta-btn li.simple-cta-email a {
  background: #E8AF13;
}

ul.simple-cta-btn li.simple-cta-tel a {
  background: #333333;
}

ul.simple-cta-btn li a span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

ul.simple-cta-btn li a span.simple-cta-sml {
  font-size: 10px;
}

@media all and (max-width: 767px) {
  .simple-cta {
    width: 100%;
    margin: 40px auto;
  }

  .simple-cta .simple-cta-ttl {
    width: 80%;
  }

  ul.simple-cta-btn {
    display: block;
    width: 85%;
    margin: 0 auto;
  }

  ul.simple-cta-btn li {
    margin-bottom: 5px;
  }

  ul.simple-cta-btn li a {
    display: block;
  }

}

/* .l-main-img
================================================ */
.l-main-img {
  background: #fff url(../img/bg_mainimg01-sp.jpg) no-repeat top/cover;
}

.l-main-img__inner {
  box-sizing: border-box;
  padding-top: 46px;
  padding-bottom: 43px;
}

.l-main-img__copy {
  width: 59%;
  min-width: 196px;
  margin-left: -10px;
}

.l-main-img__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 22px;
}

.l-main-img__item {
  width: 52%;
  background-color: #83BAE6;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.l-main-img__item:nth-child(2n) {
  width: 47%;
}

.l-main-img__card {
  margin-top: 13px;
  background-color: #fff;
  text-align: center;
  padding: 0 0 3px;
}

.l-main-img__card-img {
  max-width: 332px;
}

.l-main-img__card-txt {
  font-size: 1.3rem;
  font-weight: 800;
}

@media all and (min-width: 768px) {
  .l-main-img {
    background: #fff url(../img/bg_mainimg01-pc.jpg) no-repeat center/1366px;
  }

  .l-main-img__inner {
    height: 678px;
    font-size: 3rem;
    padding-top: 67px;
  }

  .l-main-img__copy {
    width: 720px;
  }

  .l-main-img__list {
    width: 720px;
    margin-top: 22px;
    display: inline-flex;
    justify-content: flex-start;
  }

  .l-main-img__item {
    padding: 0 15px;
    font-size: 3rem;
    line-height: 1.8;
    width: auto;
    margin: 0 14px 16px 0;
  }

  .l-main-img__item:nth-child(2n) {
    width: auto;
  }

  .l-main-img__card {
    margin-top: 4px;
    padding: 0;
    text-align: left;
    background-color: transparent;
  }

  .l-main-img__card-txt {
    font-size: 2rem;
  }

  .l-main-img__card-img {
    max-width: 633px;
  }
}


/* .home-intro
================================================ */
.home-intro {
  background-color: #EBEBEB;
}

.home-intro .home-intro__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}

.home-intro__head {
  margin: 0 auto 24px;
  max-width: 314px;
}

.home-intro__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-intro__item {
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: 12px;
  border-radius: 5px;
  width: 48.5%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.home-intro__item+.home-intro__item {
  margin-top: 20px;
}

.home-intro__item:nth-child(2) {
  margin-top: 0;
}

.home-intro__item-img {
  padding: 11px;
}

.home-intro__item-txt {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.28;
}

.home-intro__item-txt span {
  color: rgb(var(--ltblue));
}

@media all and (min-width: 768px) {
  .home-intro .home-intro__inner {
    padding-top: 69px;
    padding-bottom: 112px;
    max-width: 1230px;
  }

  .home-intro__head {
    max-width: 548px;
    margin: 0 auto 34px;
  }

  .home-intro__list {
    justify-content: center;
  }

  .home-intro__item {
    width: 285px;
    padding-bottom: 28px;
  }

  .home-intro__item+.home-intro__item {
    margin: 0 0 0 30px;
  }

  .home-intro__item-img {
    padding: 16px 20px 20px;
  }

  .home-intro__item-txt {
    font-size: 2.8rem;
    line-height: 1.36;
  }

  .home-intro__item-txt.line01 {
    padding-top: 10px;
  }
}


/* .home-trouble
================================================ */
.home-trouble {
  background-color: #F4F1E2;
}

.home-trouble .home-trouble__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}

.home-trouble__list {
  font-weight: 700;
  margin-top: 20px;
}

.home-trouble__item {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3;
  padding-left: 38px;
}

.home-trouble__item+.home-trouble__item {
  margin-top: 8px;
}

.home-trouble__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../img/ico_check01.png) no-repeat center/contain;
}

.home-trouble__box {
  background-color: #fff;
  margin-top: 33px;
  padding: 27px 5px 10px;
  border-radius: 5px;
  line-height: 1.67;
}

.home-trouble__box-txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-trouble__box-txt .marker {
  background: linear-gradient(transparent 50%, #FAE14C 50%);
}

.home-trouble__box-img {
  width: 165px;
  margin: -24px auto 0;
}

@media all and (min-width: 768px) {
  .home-trouble .home-trouble__inner {
    padding-top: 69px;
    padding-bottom: 110px;
    max-width: 1149px;
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  .home-trouble__content {
    display: flex;
    justify-content: space-between;
  }

  .home-trouble__content-img {
    width: 508px;
  }

  .home-trouble__list {
    font-size: 2.8rem;
    width: calc(100% - 508px);
    padding: 15px 0 0 32px;
    box-sizing: border-box;
  }

  .home-trouble__item {
    padding-left: 56px;
    font-size: 2.8rem;
  }

  .home-trouble__item+.home-trouble__item {
    margin-top: 20px;
  }

  .home-trouble__item::before {
    top: 0;
    width: 40px;
    height: 40px;
  }

  .home-trouble__box {
    margin-top: 37px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .home-trouble__box-txt {
    line-height: 1.61;
    font-size: 2.8rem;
    padding-left: 48px;
  }

  .home-trouble__box-img {
    width: 242px;
    margin: 0 0 0 18px;
  }
}

/* .home-price
================================================ */
.home-price {
  background: #FAFAFA;
}

.home-price .home-price__inner {
  padding-bottom: 40px;
}

.home-price__head {
  max-width: 335px;
  margin: 0 auto -28px;
  -webkit-transform: translateY(-52px);
  transform: translateY(-52px);
}

.home-price__inner .home-price__head-b {
  /* max-width: 335px; */
  margin: 0 auto -40px;
  -webkit-transform: translateY(-52px);
  transform: translateY(-52px);
}

.home-price__head.home-price__head_margin {
  max-width: 335px;
  margin: 0 auto;
  padding: 40px 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.home-price__lead {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.home-price__lead .large {
  font-size: 2.6rem;
  color: #154788;
}

.home-price__lead .small {
  font-size: 1.5rem;
}

.home-price__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}

.home-price__item {
  max-width: 335px;
  margin: 0 10px 20px;
}

p.price-link {
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .home-price .home-price__inner {
    padding-bottom: 70px;
  }

  .home-price__head {
    max-width: 802px;
    margin: 0 auto -48px;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }

  .home-price__head.home-price__head_margin {
    max-width: 802px;
    margin: 0 auto;
    padding: 80px 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .home-price__lead {
    font-size: 3rem;
    margin-bottom: 45px;
  }

  .home-price__lead .large {
    font-size: 4rem;
  }

  .home-price__lead .small {
    font-size: 2.3rem;
  }

  .home-price__list {
    margin: 0 -23px;
  }

  .home-price__item {
    margin: 0 23px 40px;
    max-width: 590px;
  }

  p.price-link {
    padding-bottom: 100px;
  }
}

/* .home-result
================================================ */
.home-result {
  background-color: #fff;
}

.home-result .home-result__inner {
  padding-top: 99px;
  padding-bottom: 123px;
  position: relative;
}

.home-result .home-result__inner.home-result__inner_paddingbtm {
  padding-bottom: 60px;
}

.home-result .home-result__inner::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 39px 94px 0 94px;
  border-color: #f0f0f0 transparent transparent transparent;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.home-result__head {
  max-width: 295px;
  margin: 0 auto 24px;
}

.home-result__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-result__item {
  width: 48.5%;
}

.home-result__item+.home-result__item {
  margin-top: 20px;
}

.home-result__item:nth-child(2) {
  margin-top: 0;
}

.home-result__item-img {
  border-radius: 5px;
  overflow: hidden;
}

.home-result__item-txt {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #6994CC;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 9px;
}

@media all and (min-width: 768px) {
  .home-result .home-result__inner {
    padding-top: 148px;
    padding-bottom: 234px;
  }

  .home-result .home-result__inner.home-result__inner_paddingbtm {
    padding-bottom: 100px;
  }

  .home-result .home-result__inner:before {
    top: 60px;
    border-width: 58px 140px 0 140px;
  }

  .home-result__head {
    max-width: 472px;
    margin: 0 auto 34px;
  }

  .home-result__list {
    justify-content: center;
  }

  .home-result__item {
    width: 354px;
    margin: 0 12px;
  }

  .home-result__item+.home-result__item {
    margin-top: 58px;
  }

  .home-result__item:nth-child(-n+3) {
    margin-top: 0;
  }

  .home-result__item-txt {
    font-size: 3.2rem;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 2px;
  }
}

/* result_ser */
.home-result .result_ser_ttl {
  font-size: 40px;
  text-align: center;
  margin-top: 105px;
  color: #154788;
  font-weight: 800;
}

.home-result .result_ser_ttl img {
  display: block;
  margin: auto;
}

.home-result ul.result_ser_list {
  text-align: center;
  margin: 0 50px;
}

.home-result ul.result_ser_list li {
  display: inline-block;
  padding: 5px 15px;
  margin: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  border-radius: 10px;
  background: #61A6D1;
}


@media all and (max-width: 767px) {
  .home-result .result_ser_ttl {
    font-size: 20px;
    margin-top: 60px;
  }

  .home-result .result_ser_ttl img {
    width: 60%;
  }

  .home-result ul.result_ser_list {
    margin: 0;
  }

  .home-result ul.result_ser_list li {
    padding: 2px 10px;
    margin: 5px;
    font-size: 16px;
  }
}


/* .home-achievement
================================================ */
.home-achievement {
  background-color: #F4F1E2;
}

.home-achievement .home-achievement__inner {
  padding-top: 40px;
  padding-bottom: 39px;
}

.home-achievement__head {
  margin: -25px -10px 0;
}

.home-achievement__img {
  text-align: center;
}

.markerfff {
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .home-achievement .home-achievement__inner {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .home-achievement__head {
    max-width: 872px;
    margin: -52px auto 0;
    position: relative;
  }
}

/* .BeforeAfter
================================================ */
.beforeafter {
  padding: 70px 0;
  background: #EBEBEB;
}

.beforeafter .ba-ttl {
  text-align: center;
  margin: 60px 0;
}

.beforeafter .ba-cate-ttl {
  width: 800px;
  margin: 80px auto 50px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  background: #6994CC;
  border-radius: 10px;
}

.ba-box {
  width: 1150px;
  padding: 40px;
  margin: 30px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 767px) {
  .beforeafter {
    padding: 30px 0;
  }

  .beforeafter .ba-ttl {
    margin: 30px auto;
    max-width: 80%;
  }

  .beforeafter .ba-cate-ttl {
    margin: 40px auto 30px;
    width: 80%;
    font-size: 18px;
  }

  .ba-box {
    width: calc(90% - 20px);
    padding: 10px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
  }
}

/* ba-box-info */
.ba-box-info {
  display: flex;
  justify-content: space-between;
}

.ba-box-info-personal {
  display: flex;
  align-items: center;
}

.ba-box-info-personal p {
  margin-left: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.ba-box-info-add {
  text-align: right;
}

.ba-box-info-add p {
  font-size: 16px;
  font-family: var(--custom-font);
}

.ba-box-info-add ul {
  margin: 0;
  padding: 0;
}

.ba-box-info-add ul li {
  min-width: 100px;
  margin-left: 10px;
  padding: 0 20px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  background: #6994CC;
}

.ba-box-info-add ul li.ba-person {
  background: #83BAE6;
}

.ba-box-info-add ul li.ba-type {
  background: #F4F1E2;
  color: #3D3D3D;
}

@media all and (max-width: 767px) {
  .ba-box-info {
    display: block;
  }

  .ba-box-info-personal p {
    font-size: 16px;
  }

  .ba-box-info-personal img {
    width: 70px;
  }

  .ba-box-info-add {
    text-align: left;
  }

  .ba-box-info-add p {
    font-size: 12px;
  }

  .ba-box-info-add ul li {
    min-width: auto;
    margin-left: 0;
    margin-right: 3px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* ba-box-pic */
.ba-box-pic {
  display: flex;
  margin: 20px -40px;
  padding: 20px 40px 10px;
  background: #f0f0f0;
}

.ba-box-pic ul {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.ba-box-pic ul li {
  position: relative;
  display: inline-block;
  margin: 0 30px 0 0;
  padding: 0;
  width: 300px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.ba-box-pic ul li img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ba-box-pic ul::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 278px;
  width: 78px;
  height: 78px;
  background: url(../img/ico_arrow03.svg) no-repeat;
}

.ba-box-pic .ba-box-plan {
  flex: 1;
  border-radius: 20px;
  margin: 0 0 8px;
  border: solid 5px #64A5CE;
}

.ba-box-pic .ba-box-plan .ba-box-plan-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px 10px;
  gap: 20px;
  line-height: 1.3;
  background: #64A5CE;
}

.ba-box-pic .ba-box-plan .ba-box-plan-ttl {
  width: 180px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.ba-box-pic .ba-box-plan .ba-box-plan-txt {
  font-size: 16px;
}

.ba-box-pic .ba-box-plan .ba-box-plan-wrap2 {
  padding: 10px 10px;
}

.ba-box-pic .ba-box-plan .ba-box-plan-ico {
  display: block;
  width: 160px;
  float: left;
  text-align: center;
}

.ba-box-pic .ba-box-plan .ba-box-plan-price {
  padding-top: 10px;
  text-align: center;
  font-weight: 700;
}

.ba-box-pic .ba-box-plan .ba-box-plan-price span {
  color: #fff;
  padding: 2px 20px;
  font-size: 16px;
  background: #E77568;
  border-radius: 20px;
}

.ba-box-pic .ba-box-plan .ba-box-plan-price p {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.5;
}

@media all and (max-width: 767px) {
  .ba-box-pic {
    display: block;
    margin: 20px -10px;
    padding: 20px 10px 10px;
  }

  .ba-box-pic ul li {
    display: inline-block;
    margin: 0;
    width: 49%;
  }

  .ba-box-pic ul::after {
    top: 38%;
    left: calc(50% - 27px);
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-wrap {
    display: flex;
    padding: 10px 10px;
    gap: 10px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-ttl {
    width: auto;
    font-size: 20px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-txt {
    font-size: 14px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-ico {
    width: 80px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-price {
    padding-top: 5px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-price span {
    font-size: 14px;
  }

  .ba-box-pic .ba-box-plan .ba-box-plan-price p {
    font-size: 32px;
  }
}

/* comment */
.ba-box .cus-comment {
  margin-top: 30px;
  line-height: 1.8;
}

.ba-box .cus-comment .cus-comment-ttl {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #154788;
}

.ba-box .cus-comment p {
  font-size: 16px;
  font-family: var(--custom-font);
}

.ba-box .staff-comment {
  margin: 20px 0 0;
  padding: 20px;
  background: #F4F1E2;
  font-size: 16px;
  border-radius: 20px;
  line-height: 1.8;
}

.ba-box .staff-comment .staff-comment-ttl {
  font-size: 18px;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .ba-box .cus-comment {
    padding: 10px;
  }

  .ba-box .cus-comment .cus-comment-ttl {
    font-size: 24px;
  }
}

/* link */
p.ba-link {
  margin: 60px auto 80px;
  text-align: center;
}

/* .home-voice
================================================ */
.home-voice {
  background-color: #fafafa;
}

.home-voice .home-voice__inner {
  width: 100%;
  max-width: var(--contents_width);
  margin: 0 auto;
  padding: 118px 0 152px;
}

@media all and (max-width: 767px) {
  .home-voice .home-voice__inner {
    width: auto;
    padding: 48px 20px 32px;
  }
}

/* home-voice__list */
.home-voice__item {
  background-color: #fff;
  padding: 10px 12px 25px;
  border-radius: 5px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.home-voice__item+.home-voice__item {
  margin-top: 20px;
}

.home-voice__item-ba {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-voice__item-ba+.home-voice__item-ba {
  margin-top: 11px;
}

.home-voice__item-ba-set {
  width: 48%;
}

.home-voice__item-ba-set.after {
  position: relative;
}

.home-voice__item-ba-set.after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 43px;
  height: 48px;
  margin-top: -5px;
  background: url(../img/img_arrow01.png) no-repeat center/contain;
}

.home-voice__item-ba-set.after .home-voice__item-ba-tit {
  color: #61A6D1;
}

.home-voice__item-ba-tit {
  font-weight: bold;
  font-size: 2.2rem;
  text-transform: uppercase;
}

.home-voice__item-head {
  margin-top: 20px;
  line-height: 1.55;
  font-size: 2.2rem;
  margin-bottom: 13px;
}

.home-voice__item-head>span {
  background: linear-gradient(transparent 60%, #FAE14C 60%);
}

.home-voice__item-info {
  margin-top: 10px;
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .home-voice__head {
    margin-bottom: 28px;
  }

  .home-voice__list {
    width: 1000px;
    margin: auto;
  }

  .home-voice__item {
    box-sizing: border-box;
    padding: 37px 20px 65px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .home-voice__item+.home-voice__item {
    margin-top: 0;
  }

  .home-voice__item-ba+.home-voice__item-ba {
    margin-top: 20px;
  }

  .home-voice__item-ba-set.after::before {
    width: 63px;
    height: 84px;
    top: auto;
    bottom: 69px;
    left: -45px;
    margin: 0;
  }

  .home-voice__item-ba-set.after .home-voice__item-ba-tit {
    color: #61A6D1;
  }

  .home-voice__item-ba-tit {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .home-voice__item-head {
    margin: 0 0 12px;
    line-height: 1.96;
    font-size: 2.6rem;
  }

  .home-voice__item-txt {
    font-size: 1.6rem;
    line-height: 2.25;
  }

  .home-voice__item-info {
    text-align: left;
    font-size: 2.1rem;
    margin-top: 14px;
  }

  .home-voice__item-area-img {
    width: 484px;
  }

  .home-voice__item-area-txt {
    width: 420px;
  }
}

/* home-voice__footer */
.home-voice__footer {
  margin-top: 38px;
  text-align: center;
}

.home-voice__footer-txt {
  display: inline-block;
  position: relative;
  padding: 15px 52px 24px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.55;
  font-weight: bold;
}

.home-voice__footer-txt::before,
.home-voice__footer-txt::after {
  content: "『";
  position: absolute;
  font-size: 5.9rem;
  color: #61A6D1;
  font-weight: bold;
}

.home-voice__footer-txt::before {
  top: -3px;
  left: -20px;
}

.home-voice__footer-txt::after {
  right: -20px;
  bottom: -8px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.home-voice__footer-txt em {
  font-style: normal;
  font-size: 3.4rem;
  color: #ED7161;
}

.home-voice__footer-txt span {
  background: linear-gradient(transparent 60%, #FAE14C 60%);
}

@media all and (max-width: 767px) {
  .home-voice__footer-txt {
    max-width: 305px;
    margin: auto;
    padding: 15px;
    font-size: 2rem;
  }

  .home-voice__footer-txt::before,
  .home-voice__footer-txt::after {
    font-size: 4rem;
  }

  .home-voice__footer-txt::before {
    top: -8px;
  }

  .home-voice__footer-txt em {
    font-size: 3rem;
  }
}

/* cus-voice */
ul.cus-voice {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 1190px;
  margin: 50px 0;
  padding: 0 20px;
}

ul.cus-voice>li {
  display: block;
  width: 520px;
  min-height: 200px;
  /*TEST*/
  margin: 0;
  padding: 30px;
  font-size: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 767px) {
  ul.cus-voice {
    width: 100%;
    margin: 30px 0px;
    padding: 0;
  }

  ul.cus-voice>li {
    width: 100%;
    padding: 15px;
  }
}

/* cus-voice-pic & cus-voice-info  */
.cus-voice .cus-voice-pic {
  float: left;
  width: 100px;
  margin-right: 20px;
}

.cus-voice .cus-voice-info {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 700;
}

.cus-voice .cus-voice-name {
  min-width: 50%;
  font-size: 18px;
}

.cus-voice .cus-voice-star span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/ico_star_off.svg) no-repeat;
}

.cus-voice .cus-voice-star span.cus-star {
  background: url(../img/ico_star_on.svg) no-repeat;
}

.cus-voice .cus-voice-ttl {
  color: #154788;
  line-height: 1.5;
  font-size: 18px;
}

.cus-voice .cus-voice-date {
  width: 100%;
  margin-top: 5px;
  line-height: 1;
  color: #666;
  text-align: right;
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .cus-voice .cus-voice-pic {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }

  .cus-voice .cus-voice-info {
    display: inline;
  }

  .cus-voice .cus-voice-ttl {
    clear: both;
    margin-top: 10px;
  }
}

/* cus-voice-spc */
.cus-voice ul.cus-voice-spc {
  clear: left;
  padding: 20px 0;
  text-align: center;
  border-bottom: solid 1px #ccc;
}

.cus-voice ul.cus-voice-spc li {
  display: inline-block;
  min-width: 100px;
  margin: 0 10px;
  padding: 2px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #6994CC;
  border-radius: 10px;
}

.cus-voice ul.cus-voice-spc li.cus-voice-ser {
  color: #3D3D3D;
  background: #F4F1E2;
}

@media all and (max-width: 767px) {
  .cus-voice ul.cus-voice-spc {
    padding: 10px 0;
  }

  .cus-voice ul.cus-voice-spc li {
    margin: 0 5px;
    padding: 0 10px;
    font-size: 15px;
  }
}

/* cus-voice-spc */
.cus-voice .cus-voice-cmt {
  margin: 20px 0 0;
  line-height: 1.5;
}

.cus-voice .cus-voice-cmt p {
  line-height: 1.5;
}

@media all and (max-width: 767px) {
  .cus-voice .cus-voice-cmt {
    margin: 10px 0 0;
    font-size: 14px;
  }
}





/* link */
p.vo-link {
  margin: 60px auto 0;
  text-align: center;
}


/* =====================================================================
Common Parts
 =====================================================================*/
/* sp <--> tb ~ pc
-------------------------------------- */
@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}


.wrapper {
  width: 100%;
  max-width: 1366px;
  /* min-width: 1226px; */
  margin: auto;
}

@media all and (max-width: 767px) {
  .wrapper {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }
}



/*  .btn-blue , btn-gray , 
================================================== */
.btn-blue,
.btn-gray {
  position: relative;
  padding: 13px 80px 13px 40px;
  color: #fff;
  background: #3DA4F9;
  border-radius: 50px;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 24px;
  text-shadow: 0px 1px 2px rgb(0, 0, 0);
}

.btn-gray {
  background: #AAAAAA;
}

.btn-blue::after,
.btn-gray::after {
  position: absolute;
  content: "";
  top: 2px;
  right: 1px;
  width: 62px;
  height: 62px;
  background: url(../img/ico_arrow02.svg) no-repeat;
  transition: all 0.3s;
}

.btn-gray::after {
  background: url(../img/ico_arrow02_g.svg) no-repeat;
}

.btn-blue:hover::after,
.btn-gray:hover::after {
  right: -5px;
}

@media all and (max-width: 767px) {

  .btn-blue,
  .btn-gray {
    padding: 10px 40px 10px 15px;
    font-size: 16px;
  }

  .btn-blue::after,
  .btn-gray::after {
    top: 7px;
    right: 1px;
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
  }
}

/*  .c-btn01
================================================== */
.c-btn01__link {
  font-size: 2.6rem;
  font-weight: 800;
  border-radius: 5px;
  padding: 15px 20px;
  display: block;
  background-color: #E8AF13;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.c-btn01__link.bg-line {
  background-color: #1EAC23;
}

.c-btn01__small {
  display: block;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-btn01__link {
    box-sizing: border-box;
    padding: 15px 0;
    transition: all 0.3s ease;
  }

  .c-btn01__link:hover {
    opacity: 0.7;
  }

  .c-btn01__small {
    margin-top: 4px;
  }
}

/* .FAQ
================================================ */
.faq_wrap {
  background: #fff;
}

.faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  line-height: 1.5;
}

.faq .faq_ttl {
  text-align: center;
  font-size: 4rem;
  color: #154788;
  ;
  margin-bottom: 60px;
}

.faq_list dt {
  position: relative;
  padding: 18px 150px 18px 150px;
  border-top: 2px solid rgba(97, 166, 209, 0.5);
  font-size: 2.2rem;
  font-weight: 800;
  cursor: pointer;
}

.faq_list dt:nth-child(1) {
  border-top: 0;
}

.faq_list dd {
  position: relative;
  padding: 18px 15px 30px 150px;
  font-size: 2.2rem;
}

.faq_ico {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  left: 52px;
  top: 10px;
  width: 50px;
  height: 50px;
  background: #61A6D1;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 2.8rem;
}

dd .faq_ico {
  background: #A8A8A8;
}

.faq_list dt::after {
  content: "";
  position: absolute;
  right: 52px;
  top: 22px;
  width: 15px;
  height: 15px;
  border-top: 6px solid #61A6D1;
  border-right: 6px solid #61A6D1;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: all 0.3s ease;
}

.faq_list dt.is-active::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 40px;
}

@media all and (max-width: 767px) {
  .faq {
    padding: 60px 20px;
  }

  .faq .faq_ttl {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }

  .faq_ico {
    width: 34px;
    height: 34px;
    top: 13px;
    left: 0;
    font-size: 1.8rem;
  }

  dd .faq_ico {
    top: 0px;
  }

  .faq_list dt {
    padding: 16px 28px 15px 50px;
    font-size: 1.8rem;
  }

  .faq_list dd {
    padding: 3px 15px 16px 50px;
    font-size: 1.8rem;
  }

  .faq_list dt::after {
    right: 4px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-width: 4px;
  }

  .faq_list dt.is-active::after {
    top: 28px;
  }
}


/*  .c-head01
================================================== */
.c-head01 {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2rem;
  margin-bottom: 24px;
}

.c-head01__large {
  color: #154788;
  font-size: 2.6rem;
}

.c-head01__large-red {
  color: #ed7161;
  font-size: 4rem;

}

@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 48px;
    font-size: 3rem;
  }

  .c-head01__large {
    font-size: 6rem;
  }
}

/*  .c-table01
================================================== */
.c-table01 th {
  color: #61A6D1;
  text-align: left;
  width: 104px;
}

.c-table01 th,
.c-table01 td {
  padding: 15px 9px;
  border-top: 1px solid #EDEDED;
  box-sizing: border-box;
}

@media all and (min-width: 768px) {
  .c-table01 {
    width: 700px;
    margin: auto;
    font-size: 1.6rem;
  }

  .c-table01 th {
    width: 230px;
    padding: 15px 0;
  }

  .c-table01 th,
  .c-table01 td {
    padding: 15px 0;
  }
}

/*  Other Parts
================================================== */
.tel-note {
  display: block;
  margin-top: 5px;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}


/*  LP CTA Modal (2024/05/07 追加)
================================================== */

/* モーダルウィンドウのスタイル */
.lp_cta_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 透明な黒色の背景 */
  z-index: 999;
  /* 最前面に表示 */
  justify-content: center;
  align-items: center;
}

 .cta_modal-content {
  width: 80%;
  height: auto;
  margin: 0 auto;
  background: linear-gradient(to right, #eaa706 1%, #ff5e39 100%);
  border-radius: 0 20px 0 20px;
  padding: 20px 10px 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
   font-size: 24px;
}

 .contactBnr__header .head {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

 .contactBnr__header .head_surround {
  color: #eaa706;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0;
}

 .contactBnr__header .head_surround .square {
  background: #fff;
  border-radius: 3px;
  padding: 5px;
}

 .contactBnr__header .subhead {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0;
}

 .contactBnr__inner {
  background-color: #fff;
  border-radius: 0 20px 0 20px;
  margin-top: 20px;
  padding: 10px;
}

 .contactBnr__inner .btn {
  border-radius: 10px;
  padding: 3px 0;
  margin: 5px auto 0;
  display: block;
  background: #ccc;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

 .btn._bigBtn {
  padding: 10px 0;
}

 .btn._red {
  background: #C7243A;
}

 .btn .txt {
  display: block;
  font-size: 14px;
  font-weight: bold;
  font-size: 16px;
}

 .txt.icon {
  padding-left: 25px;
  position: relative;
  display: inline-block;
}

 .txt.icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  image-rendering: -webkit-optimize-contrast;
}

 .txt.icon.icon-tel:before {
  background: url('https://file.mysquadbeyond.com/uploads/article_photo/photo/2550280/bcbd9f69-4740-4f1d-be29-2593da9dbe89.png');
}

 .closeCtaModalBtn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/*  注意文 (2024/05/10 追加)
================================================== */

 .temp12 {
  /*背景色*/
  background: #f7f7f7;
  /*上側の内余白*/
  padding-top: 60px;
}

 .temp12 .temp12__area {
  /*文字色*/
  color: #05161a;
  /*上線｜太さ｜線種｜色｜*/
  border-top: 4px solid #222;
  /*内側の余白｜上｜左右｜下｜*/
  padding: 60px 0 0;
}

 .temp12 .temp12__area .wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*横幅*/
  width: calc(720px - 20px);
  /*横幅（最大）*/
  max-width: calc(100% - 20px);
  /*外側の余白｜上下｜左右（センタリング）｜*/
  margin: 0 auto;
  /*右側の内余白*/
  padding-right: 10px;
  /*左側の内余白*/
  padding-left: 10px;
}

 .temp12 .temp12__area .contact__area .titleDeco {
  /*文字の大きさ*/
  font-size: 2.286em;
  /*文字色*/
  color: #73e6a3;
  /*文字の太さ*/
  font-weight: bold;
  /*文字の位置*/
  text-align: center;
  display: table;
  /*外側の余白｜上下｜左右（センタリング）｜*/
  margin: 0 auto;
  /*行間*/
  line-height: 1.2;
}

 .temp12 .temp12__area .contact__area .titleDeco .ja__text {
  display: block;
  /*文字色*/
  color: #05161a;
  /*文字の大きさ*/
  font-size: 0.5625em;
  /*上線｜太さ｜線種｜色｜*/
  border-top: 2px solid #222;
  /*上側の外余白*/
  margin-top: 14px;
  /*上側の内余白*/
  padding-top: 14px;
}

 .temp12 .temp12__area .contact__area .description {
  /*外側の余白｜上｜左右｜下｜*/
  margin: 40px 0 0;
  /*下内側の余白*/
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
   .temp12 {
    /*上側の内余白*/
    padding-top: 40px;
  }

   .temp12 .temp12__area {
    /*内側の余白｜上下｜左右｜下｜*/
    padding: 40px 0 0;
  }

   .temp12 .temp12__area .wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*横幅*/
    width: calc(inherit - 20px);
    /*横幅（最大）*/
    max-width: calc(100% - 20px);
    /*外側の余白｜上下｜左右（センタリング）｜*/
    margin: 0 auto;
    /*右側の内余白*/
    padding-right: 10px;
    /*左側の内余白*/
    padding-left: 10px;
  }

   .temp12 .temp12__area .contact__area .description {
    /*外側の余白｜上｜左右｜下｜*/
    margin: 20px 0 0;
  }

   .temp12 .temp12__area .contact__area .contactForm__area {
    /*上側の外余白*/
    margin-top: 10px;
  }
}