@charset "UTF-8";

/* 全体的な設定 */
html {
    font-size: 10px; /* 1rem = 10px */
    height: 100%;
    visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: sans-serif;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .1em;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
.font-m {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.font-mb {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.font-c {
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-cb {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
/* 見出し */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
/* 段落 */
    p {
    margin-bottom: 1rem;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
@media screen and (max-width: 960px) {
  body,
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 14px;
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #739EC9;
}
.p-header__hamburger {
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #fff;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -6px;
}
.c-hamburger span:nth-of-type(2) {
  top: -1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 4px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
.p-header__nav {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: center;
  justify-content: center;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.p-header__title {
  width: 310px;
}
.p-header__title img {
  margin-bottom: 6px;
}
.p-header__title .seo-text {
  color: #fff;
  font-size: 10px;
  margin-bottom: 0;
  font-weight: inherit;
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
}
.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #739EC9;
}
.p-nav__inner {
  display: flex;
}
.p-nav__list {
  display: block;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 15px;
}
.p-nav__item {
  width: auto;
  display: flex;
  align-items: center;
}
.p-nav__link {
  color: #fff;
  font-size: 15px;
  display: block;
  position: relative;
  padding-left: 7px;
  background-image: linear-gradient(#FFFF01, #FFFF01);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
.p-nav__link:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}
.p-nav__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #FFFF01;;
  border-radius: 50%;
  vertical-align: middle;
}
.header-contact {
  background-color: #FFFF01;
  border-radius: 30px;
  padding: 5px 20px;
  height: fit-content;
  transition: all 0.2s;
}
.header-contact:hover {
  opacity: .85;
}
.header-contact::before {
  display: none;
}
.header-contact .p-nav__link {
  color: #0C56A1;
  font-weight: bold;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  .p-header__title {
    width: 240px;
  }
  .p-nav__list {
    column-gap: 10px;
  }
  .p-nav__link {
    font-size: 14px;
  }
  .header-contact {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .p-header__title {
    width: 220px;
  }
  .p-nav__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 960px) {
  .p-header__title {
    position: relative;
    z-index: 100;
  }
  .p-header__hamburger {
    display: block;
  }
  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .p-header__nav {
    position: absolute;
    opacity: 0; 
    height: 100vh;
    width: 100%;
    right: -100%;
    background-color: #739EC9;
  }
  .p-nav__list {
    padding-right: 20px;
    padding-left: 20px;
    display: block;
  }
  .p-nav__item {
    margin-bottom: 20px;
  }
  .p-nav__link {
    font-size: 22px;
  }
  .header-contact {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav__link {
    font-size: 18px;
  }
  .header-contact {
    padding: 5px 15px;
  }
  .p-header__hamburger {
    width: 60px;
  }
}


/*---------------------*/
/* フッター */
footer {
  background-color: #739EC9;
  color: #fff;
  padding: 50px 0 20px;
}
footer .logo-area {
  width: 430px;
}
footer .logo-area img {
  margin-bottom: 10px;
}
footer .logo-area p {
  font-size: 12px;
}
footer .logo-area p br {
  display: none;
}
footer .content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
footer .nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 20px;
}
footer ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  row-gap: 20px;
  column-gap: 40px;
}
.footer-contact {
  background-color: #FFFF01;
  color: #0C56A1;
  border-radius: 30px;
  padding: 5px 20px;
  transition: all .2s;
}
.footer-contact a:hover {
  opacity: .85;
}
footer ul li {
  display: flex;
  align-items: center;
}
footer ul li a {
  background-image: linear-gradient(#FFFF01, #FFFF01);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
footer ul li a:hover {
    background-position: bottom left;
    background-size: 100% 2px;
}
footer ul li p {
  margin-bottom: 0;
  font-size: 16px;
}
.footer-contact p {
  font-weight: bold;
}
footer .sns-area {
  width: 40px;
  height: 40px;
}
footer .copy-area {
  text-align: center;
}
.copy-area .copy br {
  display: none;
}
@media screen and (max-width: 1250px) {
  footer .logo-area {
    width: 360px;
  }
}
@media screen and (max-width: 960px) {
  footer {
    padding: 30px 0 20px;
}
footer .logo-area p br {
  display: block;
}
footer .content {
    margin-bottom: 20px;
}
  footer .logo-area {
    width: 260px;
  }
  footer ul {
    column-gap: 20px;
  }
  footer ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer .content {
    display: flex;
    flex-direction: column;
  }
  footer .logo-area {
    margin: 0 auto 20px;
  }
  footer .logo-area p {
    text-align: center;
  }
  footer ul {
    margin: 0 auto;
  }
  footer .nav-area {
    row-gap: 10px;
  }
  footer .sns-area {
    margin: 0 auto;
    width: 30px;
    height: 30px;
  }
  .copy-area .copy br {
    display: block;
  }
  small {
    font-size: 10px;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding: 20px 0;
  }
  footer ul {
    row-gap: 10px;
  }
  footer ul li p {
    font-size: 12px;
  }
  .footer-contact {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 450px) {
  footer ul {
    grid-template-columns: repeat(2, 3fr);
    column-gap: 0;
  }
}

/*---------------------*/
/* 全体共通 */
.mv {
  margin-top: 71px;
}
.sub-mv {
  background-image: url(../images/sub/sub_mv.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  height: 600px;
  width: 100%;
}
.sub-mv .mv-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
.sub-mv .sub-title {
  background-color: #222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 40px;
  width: 320px;
  height: 160px;
  display: flex;
  align-items: center;
}
.sub-mv .mv-inner .title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 0;
}
.section {
  margin: 0 0 120px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section .title-area {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
.top-section h3,.com-section h3 {
  font-size: 34px;
  line-height: 1.3em;
  padding: 0 20px;
  display: inline-block;
}
.top-section h3 .marker-line,
.com-section h3 .marker-line {
  background: linear-gradient(transparent 60%, #D0EDFF 40%);
  padding-bottom: 5px;
  padding-top: 2px;
  box-decoration-break: clone;
}
.com-section h3 .br2 {
  display: none;
}
@media screen and (max-width: 1700px) {
.sub-mv {
    height: auto;
    padding-bottom: 32%;
}
.sub-mv .sub-title {
  top: 8vw;
  transform: none;
}
}
@media screen and (max-width: 1250px) {
  .section-inner {
  padding: 0 30px;
  }
  .sub-mv .sub-title {
    width: 260px;
    height: 120px;
    padding: 20px;
    margin-left: 30px;
  }
  .sub-mv .mv-inner .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .mv {
  margin-top: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .mv {
  margin-top: 62px;
  }
}
@media screen and (max-width: 960px) {
.section {
  margin: 0 0 80px;
}
.section .title-area {
  margin-bottom: 40px;
}
.top-section h3,.com-section h3 {
  font-size: 26px;
}
  .sub-mv .sub-title {
    width: 230px;
    height: 100px;
    padding: 15px;
  }
  .sub-mv .mv-inner .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
    .sub-mv {
        height: 240px;
        padding-bottom: 0;
        background-size: cover;
        background-attachment: scroll;
    }
    .sub-mv .sub-title {
      top: 50%;
      transform: translateY(-50%);
    }
  }
@media screen and (max-width: 600px) {
  .section {
    margin: 0 0 60px;
  }
  .section-inner {
   padding: 0 20px;
  }
  .section .title-area {
   margin-bottom: 30px;
  }
  .top-section h3,.com-section h3 {
   font-size: 24px;
  }
  .sub-mv .sub-title {
    width: 200px;
    height: 80px;
    padding: 15px;
  }
  .sub-mv .mv-inner .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 540px) {
  .top-section h3,.com-section h3 {
   font-size: 20px;
  }
}
@media screen and (max-width: 390px) {
  .top-section h3,.com-section h3 {
   font-size: 18px;
   line-height: 1.8;
  }
  .com-section h3 .br2 {
  display: block;
  }
  .sub-mv .sub-title {
    width: 160px;
    height: 60px;
  }
  .sub-mv .mv-inner .title {
    font-size: 18px;
  }
}

/* 全体共通 cta */
.com-cta .title-area {
  text-align: center;
  margin-bottom: 50px;
}
.com-cta h3 {
  display: inline-block;
  font-size: 30px;
  padding: 10px 20px;
  margin: 0 auto;
  background: none;
  background-color: #FFFF6E;
}
.com-cta h4 {
  font-size: 30px;
  margin-bottom: 20px;
}
.com-cta .contact-box {
  display: flex;
  justify-content: center;
  column-gap: 50px;
}
.com-cta .content {
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}
.com-cta .content-inner {
  margin-bottom: 40px;
}
.com-cta ul li {
  overflow: hidden;
}
.com-cta ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.com-cta .tel-area {
  background-color: #739EC9;
  color: #fff;
  width: 500px;
  border-radius: 200px;
  min-height: 150px;
  transition: all .2s;
}
.com-cta .tel-area:hover {
  opacity: .9;
}
.com-cta .tel-area .tel {
  color: #FFFF01;
  font-size: 46px;
  font-weight: bold;
  font-family: "century-gothic", sans-serif;
  font-style: normal;
  margin-bottom: 5px;
  line-height: 1;
  position: relative;
  padding-left: 30px;
}
.com-cta .tel-area .tel::before {
  content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    background-image: url(../images/common/tel_yellow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.com-cta .tel-area .time {
  font-size: 16px;
  margin-bottom: 0;
}
.com-cta .mail-area {
  background-color:#4C83BA;
  color: #fff;
  width: 500px;
  border-radius: 200px;
  min-height: 150px;
  transition: all .2s;
}
.com-cta .mail-area:hover {
  opacity: .9;
}
.com-cta .mail-area p {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
}
.com-cta .mail-area span {
  font-size: 32px;
  color: #FFFF01;
  font-weight: bold;
}
.com-cta .mail-area .mail {
  position: relative;
  padding-left: 20px;
}
.com-cta .mail-area .mail::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    background-image: url(../images/common/mail_icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.com-cta .mail-area .line {
  position: relative;
  padding-left: 60px;
}
.com-cta .mail-area .line::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    background-image: url(../images/common/line_icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.com-cta .mail-area .mail-text2 {
  font-size: 32px;
}
  .com-cta h4 br {
    display: none;
  }
@media screen and (max-width: 960px) {
  .com-cta .title-area {
    margin-bottom: 30px;
  }
  .com-cta h3 {
    font-size: 24px;
  }
  .com-cta h4 {
    font-size: 24px;
  }
  .com-cta .contact-box {
    column-gap: 2%;
  }
  .com-cta .tel-area ,.com-cta .mail-area {
    min-height: 120px;
  }
  .com-cta .tel-area .tel {
    font-size: 38px;
  }
  .com-cta .tel-area .tel::before {
    width: 34px;
    height: 34px;
    left: -8px;
  }
  .com-cta .tel-area .time {
    font-size: 14px;
  }
  .com-cta .mail-area p {
    font-size: 16px;
  }
  .com-cta .mail-area span {
    font-size: 26px;
  }
  .com-cta .mail-area .mail-text2 {
    font-size: 26px;
  }
  .com-cta .mail-area .mail::before {
    width: 26px;
    height: 26px;
    left: -10px;
  }
  .com-cta .mail-area .line::before {
    width: 30px;
    height: 30px;
  }
  .com-cta .mail-area .line {
    padding-left: 45px;
  }
}
@media screen and (max-width: 767px) {
  .com-cta .contact-box {
    flex-direction: column;
    row-gap: 15px;
  }
  .com-cta .contact-box li {
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .com-cta .tel-area ,.com-cta .mail-area {
    width: 400px;
    min-height: 100px;
  }
}
@media screen and (max-width: 600px) {
  .com-cta .title-area {
    margin-bottom: 20px;
  }
  .com-cta h3 {
    font-size: 20px;
  }
  .com-cta h4 {
    font-size: 20px;
  }
  .com-cta .content-inner {
    margin-bottom: 30px;
  }
  .com-cta .tel-area,.com-cta .mail-area {
    min-height: 70px;
    width: 340px;
  }
  .com-cta .tel-area .tel {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .com-cta .tel-area .tel::before {
    width: 28px;
    height: 28px;
    left: -4px;
  }
  .com-cta .tel-area .time {
    font-size: 12px;
  }
  .com-cta .mail-area p {
    font-size: 13px;
  }
  .com-cta .mail-area span {
    font-size: 18px;
  }
  .com-cta .mail-area .mail-text2 {
    font-size: 18px;
  }
  .com-cta .mail-area .mail::before {
    width: 22px;
    height: 22px;
    left: -8px;
  }
  .com-cta .mail-area .line::before {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 450px) {
    .com-cta h3 {
    font-size: 18px;
    }
    .com-cta h4 {
      font-size: 18px;
    }
    .com-cta .content-inner {
    margin-bottom: 20px;
    }
    .com-cta .content-inner p {
      text-align: left;
    }
}
@media screen and (max-width: 390px) {
  .com-cta h4 br {
    display: block;
  }
  .com-cta .tel-area, .com-cta .mail-area {
    width: 100%;
  }
  .com-cta .mail-area .mail {
    padding-left: 16px;
  }
}

/* 全体共通 worry */
.com-worry .content {
  display: grid;
  grid-template-columns: repeat(2,2fr);
  column-gap: 30px;
  row-gap: 30px;
  padding: 0 20px;
}
.com-worry ul li {
  display: grid;
  grid-template-columns: 55% 45%;
  outline: 3px solid #fff;
  outline-offset: -15px;
  height: 300px;
}
.com-worry .list01,.com-worry .list04 {
  background-color: #739EC9;
}
.com-worry .list02,.com-worry .list03 {
  background-color: #4C83BA;
}
.com-worry .content01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0 20px 20px;
}
.com-worry .content01 img {
  width: 110px;
  margin-bottom: 20px;
}
.com-worry h4 {
  font-size: 20px;
  color: #fff;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}
.com-worry .content02 {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .com-worry .content {
    padding: 0;
    row-gap: 3%;
    column-gap: 2%;
  }
  .com-worry ul li {
    height: 260px;
  }
  .com-worry h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .com-worry ul li {
    grid-template-columns: 60% 40%;
}
}
@media screen and (max-width: 960px) {
  .com-worry ul li {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .com-worry .content01 {
    padding: 50px 20px 0;
  }
  .com-worry .content01 img {
      width: 120px;
  }
  .com-worry h4 {
    font-size: 22px;
  }
  .com-worry .content02 {
    padding: 0 20px 40px;
  }
  .com-worry .content02 img {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .com-worry h4 {
    font-size: 18px;
    letter-spacing: .8px;
  }
  .com-worry .content01 img {
    width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .com-worry h4 {
    font-size: 15px;
  }
}
@media screen and (max-width: 540px) {
  .com-worry .content {
    display: flex;
    flex-direction: column;
    max-width: 330px;
    margin: 0 auto;
    row-gap: 20px;
  }
  .com-worry .content01 {
    padding: 30px 10px 0
  }
  .com-worry .content02 {
    padding: 0 20px 20px;
  }
  .com-worry .content02 img {
    width: 60%;
  }
  .com-worry .content01 img {
    margin-bottom: 10px;
  }
  .com-worry h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 390px) {
    .com-worry .content {
      width: 100%;
    }
    .com-worry .content02 img {
    width: 80%;
    }
}

/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s, transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s, transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s, transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}
