@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&family=Noto+Serif+JP:wght@400;600&display=swap');

html {
    --font-family-noto-sans-jp: "Noto Sans JP", sans-serif;
    --font-family-noto-serif-jp: 'Noto Serif JP', serif;
    font-size: 13px;
    font-size: 3.4667vw;
    line-height: 1.846154;
    scroll-behavior: smooth;
}


@media screen and (min-width: 751px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: var(--font-family-noto-sans-jp);
    color: #333333;
}

p {
    margin: 0;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

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

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

.wrap {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wrap_inner {
    max-width: 1040px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}



.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}



/* -----------------------------------------------------
    header
------------------------------------------------------ */
.site-header{
  border-bottom: 1px solid #D0D0D0;
  background: #fff;
}

.site-header__inner{
  width: min(92%, 1040px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 0;
}

.site-header__logo{
  display: block;
  width: 45.6%;
  max-width: 211px;
  aspect-ratio: 126 / 46;
}

.site-header__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pc_only{ display: none; }
.sp_only{ display: block; }

.site-header__burger{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 30px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-header__burgerLine{
  display: block;
  width: 24px;
  height: 2px;
  background: #00376E;
  border-radius: 999px;
  margin: 1px 0;
}

.site-header__overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}

.site-header__drawer{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #fff;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 14px 16px 24px;
}

.site-header__drawer .sp_menu_bnr {
  width: 90%;
  margin: 0 auto;
  padding-top: 2rem;
}

.site-header__drawerHead{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.site-header__drawerLogo{
  display: block;
  width: 170px;
}
.site-header__drawerLogo img{
  width: 100%;
  display: block;
}

.site-header__close{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.site-header__close span{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #00376E;
  border-radius: 999px;
}
.site-header__close span:nth-child(1){ transform: translate(-50%,-50%) rotate(45deg); }
.site-header__close span:nth-child(2){ transform: translate(-50%,-50%) rotate(-45deg); }

.site-header__spList{
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
}
.site-header__spList a{
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid #f0f0f0;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.site-header.is-open .site-header__overlay{
  opacity: 1;
  pointer-events: auto;
}
.site-header.is-open .site-header__drawer{
  transform: translateX(0);
}

@media screen and (min-width: 751px){
  .pc_only{ display: flex; }
  .sp_only{ display: none; }

  .site-header{
    padding: 16px 0;
  }

  .site-header__inner{
    justify-content: space-between;
    padding: 0;
  }

  .site-header__logo{
    width: auto;
    max-width: none;
    aspect-ratio: auto;
  }
  .site-header__logo img{
    width: 220px;
    height: auto;
  }

  .site-header__nav{
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .site-header__navList{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
  }

  .site-header__navList a{
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
  }

  .site-header__navList a:hover{
    opacity: .75;
  }

  .site-header__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 22px;
    background: #376B9F;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header__ctaIcon{
    width: 18px;
    height: 18px;
    display: block;
  }
}
.clearfix,
.cf,
.comment-respond {
    zoom: 1;
}

.clearfix:before,
.clearfix:after,
.cf:before,
.comment-respond:before,
.cf:after,
.comment-respond:after {
    content: "";
    display: table;
}

.clearfix:after,
.cf:after,
.comment-respond:after {
    clear: both;
}

.footer {
    clear: both;
    background-color: #00376E;
    background-size: cover;
    color: #fff;
    /*font-family: "Noto Sans Japanese";*/
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.footer .wrap {
    width: 96%;
    margin: 0 auto;
}

.footer ul {
    margin: 1em 0;
}

.footer p {
    margin: 1em 0;
}

@media only screen and (min-width: 768px) {
    .wrap {
        width: 760px;
    }
}

@media only screen and (min-width: 1030px) {
    .wrap {
        width: 1040px;
    }
}

.content_lp {
  max-width: 100%;
  overflow-x: hidden;
}

/* -----------------------------------------------------
    MV
*/

.content_lp .mv .tt01 {
    background: url(../img/sp/mv.jpg) no-repeat center top;
    background-size: 100% auto;
    aspect-ratio: 375 / 342;
    display: block;
    justify-content: center;
    align-items: center;
}

.content_lp .mv h1{
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  font-size: 2rem;
  margin: 0;
  padding: 7rem 0 0 1.3rem;
  line-height: 3rem;
}
.content_lp h2 {
  font-size: 10px;
    font-weight: normal;
    text-align: right;
    width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
}

@media screen and (min-width: 751px) {

    .content_lp .mv .tt01 {
      background: url(../img/pc/mv.jpg) no-repeat center center;
      background-size: cover;
      aspect-ratio: auto;
      height: 756px;
      display: block;
    }
    .content_lp .mv h1{
    font-family: "Zen Old Mincho", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #ffffff;
    font-size: 3rem;
    margin: 0;
    padding: 14rem 0 0 4rem;
    line-height: 4.6rem;
  }
  .content_lp h2 {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  margin: 0;
  padding-top: 1rem;
}
}

/* -----------------------------------------------------
    cont01
------------------------------------------------------ */

.content_lp .cont01 {
  position: relative;
  padding: 40px 0 40px;
  background-color: #fff;
}

.content_lp .cont01-inner {
  display: block;
}

.content_lp .cont01-text {
}

.content_lp .cont01-tt01 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  width: 85%;
  margin: 0 auto;
  color:#00376E;
  padding-bottom: 1rem;
}
.content_lp .cont01 .cont01-name-role {
  padding-top: 2rem;
}
.content_lp .cont01 .cont01-lead{
  width: 85%;
  margin: 0 auto;
}
.content_lp .cont01 .cont01-name {
  width: 85%;
  margin: 0 auto;
}
.content_lp .cont01 .name {
  width: 36.7%;
}

.content_lp .cont01 .cont01-visual {
  margin-top: 24px;
  width: 100%;
  aspect-ratio: 308 / 238;
  background-image: url(../img/sp/cont1.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}

.content_lp .cont01::before {
  content: none;
}



@media screen and (min-width: 751px) {

  .content_lp .cont01 {
    z-index: 0;
    padding: 100px 0 160px;
  }

  .content_lp .cont01 .wrap,
  .content_lp .cont01 .wrap_inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .content_lp .cont01-tt01,
  .content_lp .cont01-lead,
  .content_lp .cont01-name {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .content_lp .cont01-inner {
    padding-left: calc((100% - 1040px) / 2);
    padding-right: 0;
  }

  .content_lp .cont01-body {
    margin-top:100px;
  }

  .content_lp .cont01-text {
    max-width: 750px;
  }
  .content_lp .cont01 .cont01-lead{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin:2rem 0 0 0;
  }

  .content_lp .cont01-tt01 {
    font-size:3.3rem;
    font-weight: 600;
    line-height:1.6;
    margin-bottom: 32px;
    color: #00376E;
    padding: 0;
}

  .content_lp .cont01 .cont01-visual {
    display: none;
  }

  .content_lp .cont01::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5rem;
    width: 720px;
    aspect-ratio: 720 / 510;
    background-image: url(../img/pc/cont1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    border-radius: 32px 0 0 0;
    z-index: -1;
  }
  .content_lp .cont01 .cont01-name {
    margin:0;
  }
  .content_lp .cont01 .cont01-name-role {
    font-size: 16px;
    margin:0;
  }
  .content_lp .cont01 .name {
    width: 39.4%;
    margin:0;
  }
}
@media screen and (max-width: 750px) {
  .cont01-visual {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    margin-top: 24px;
    width: 100%;
    aspect-ratio: 308 / 238;
    background-image: url(../img/sp/cont1.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden;
    display: block !important;
  }
}

/* -----------------------------------------------------
    insta
*/

  .content_lp .insta {
  background-color: #E4F0F6;
  padding: 40px 0;
  text-align: center;
}
  .content_lp .insta .click{padding-top:1rem;text-align:center;}


  .content_lp .insta .tt01 .p1 {
  font-size: 20px;
  font-weight: 700;
  color: #003366;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-style: normal;
}

  .content_lp .insta .tt01 img {
  width: 28px;
  height: auto;
}
  .content_lp .insta .tt02 {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

  .content_lp .insta .tt02 img {
  width: 80%;
  max-width: 320px;
  height: auto;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
    .content_lp .insta {
    padding: 80px 0;
  }

    .content_lp .insta .tt01 .p1 {
    font-size: 32px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

    .content_lp .insta .tt01 img {
    width: 36px;
  }

    .content_lp .insta .tt02 {
    margin-top: 48px;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

    .content_lp .insta .tt02 img {
    width: 280px;
    max-width: none;
  }
}

/* -----------------------------------------------------
    cont02
*/
.content_lp .cont02 {
  background-color: #fff;
  padding: 40px 0 0;
}

/* 見出し側 */
.content_lp .cont02 .tt01 {
  margin: 0 auto;
}

.content_lp .cont02 .tt01 .p1 {
  font-size: 1.5rem;
  background: linear-gradient(transparent 70%, #F5EC0D 0%);
  line-height: 1.3;
  width: 72%;
  text-align: center;
  margin: 0 auto 3rem;
}

/* 画像＋リスト */
.content_lp .cont02 .nayami {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 95%;
  margin: 0 auto;
}

.content_lp .cont02 .nayami img {
  flex: 0 0 45%;
  max-width: 40%;
  border-radius: 24px;
  display: block;
}

.content_lp .cont02 .nayami ul {
  flex: 1 1 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.content_lp .cont02 .nayami ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 4px;
}

.content_lp .cont02 .nayami ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url(../img/pc/cont2_checkbox.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.content_lp .cont02 .nayami .red {
  color: #A50000;
  font-weight: 700;
}

/* ▼ の画像 */
.content_lp .cont02 .cont02-arrow {
  height: 40px;
  background-color: #FFE18E;
  background-image: url(../img/sp/cont2_arrow_sp.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  margin-top: 32px;
}

.content_lp .cont02 .tt02 {
  position: relative;
  background-color: #FFE18E;
  background-image: url(../img/sp/cont2_img2.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  min-height: 128px;
  padding: 84px 20px 0;
  text-align: left;
  display: block;
}

.content_lp .cont02 .tt02 .p1 {
  max-width: 195px;
  margin: 0 0 0 123px;
  font-size: 13px;
  line-height: 1.6;
}

.content_lp .cont02 .tt02 .p2 {
  max-width: 195px;
  margin: 0 auto 0;
  font-size: 13px;
  text-align: right;
}
@media screen and (min-width: 751px) {

  .content_lp .cont02 {
    padding: 80px 0 0;
  }

  .content_lp .cont02 .tt01 {
    width: 1040px;
    margin-bottom: 0;
  }

  .content_lp .cont02 .tt01 .p1 {
    font-size: 2.2rem;
    width: 57%;
    margin: 0 auto 3rem;
  }

  .content_lp .cont02 .nayami {
    gap: 40px;
    align-items: center;
    width: 716px;
    margin: 0 auto 40px;
  }

  .content_lp .cont02 .nayami img {
    flex: 0 0 340px;
    max-width: 340px;
    border-radius: 32px;
  }

  .content_lp .cont02 .nayami ul {
    font-size: 15px;
    line-height: 2;
  }
  .content_lp .cont02 .nayami ul li {
    font-size: 20px;
  }
  .content_lp .cont02 .nayami ul li::before {
    top: 11px;
    width: 25px;
    height: 25px;
  }

  .content_lp .cont02 .cont02-arrow {
    height: 70px;
    background-image: url(../img/pc/cont2_arrow_pc.png);
    background-size: 100% auto;
    margin-top: 56px;
    padding-bottom: 3rem;
  }

  .content_lp .cont02 .tt02 {
    /*max-width: 1440px;*/
    margin: 0 auto;
    background-color: #FFE18E;
    background-image: url(../img/pc/cont2_img2.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    min-height: 320px;
    padding: 0 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .content_lp .cont02 .tt02 .p1,
  .content_lp .cont02 .tt02 .p2 {
    max-width: 520px;
    margin-left: auto;
    margin-right: calc((100% - 850px) / 2);
  }

  .content_lp .cont02 .tt02 .p1 {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 12px;
    padding-top: 4rem;
  }

  .content_lp .cont02 .tt02 .p2 {
    font-size: 18px;
    margin-top: 0;
    text-align: right;
  }
}
/* -----------------------------------------------------
    cont3
*/

.content_lp .cont03  {
    background: url(../img/sp/cont3_img.jpg) no-repeat center top;
    background-size: 100% auto;
    aspect-ratio: 375 / 406;
    display: block;
    justify-content: center;
    align-items: center;
}

.content_lp .cont03 .p1{
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto;
    padding: 15% 0 0 0;
    line-height: 1.8rem;
    width: 90%;
}

@media screen and (min-width: 751px) {

    .content_lp .cont03 {
      background: url(../img/pc/cont3_img.jpg) no-repeat center center;
      background-size: cover;
      aspect-ratio: auto;
      height: 522px;
      display: block;
    }
    .content_lp .cont03 .p1{
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    text-align: left;
    margin: 0;
    padding: 3% 0 0 52%;
    line-height: 1.8rem;
    width: 100%;
  }
}


/* -----------------------------------------------------
    cont4
*/

.content_lp .cont04 {
  background-color: #A5E7FF;
}
.content_lp .cont04 h3.title {
  margin: 0 auto;
  text-align: center;
  padding:6rem 0 0.3rem 0;
  color: #00376E;
  font-size: 1.6rem;
}
.content_lp .cont04 .p1 {
  text-align: center;
  padding-bottom: 4rem;
  width: 90%;
  margin: 0 auto;
}
.content_lp .cont04 .riyu1 {
  position: relative;
  background: url(../img/sp/cont4_img1.png) no-repeat top center;
  background-size: 100% auto;
  padding:50px 0 32px;
  margin-bottom: 3rem;
}
.content_lp .cont04 .riyu1::before {
  content: "01";
  position: absolute;
  left: 44px;
  top: -24px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #00376E;
  z-index: 1;
}
.content_lp .cont04 .riyu1 .txtarea {
  margin: 0 auto;
  background-color: #fff;
  padding:0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.content_lp .cont04 .riyu1 .txtarea .title {
  color: #00376E;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

.content_lp .cont04 .riyu1 .txtarea .p1 {
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.content_lp .cont04 .riyu2 {
  position: relative;
  background: url(../img/sp/cont4_img2.png) no-repeat top center;
  background-size: 100% auto;
  padding:50px 0 32px;
  margin-bottom: 3rem;
}
.content_lp .cont04 .riyu2::before {
  content: "03";
  position: absolute;
  right: 44px;
  top: -24px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #00376E;
  z-index: 1;
}
.content_lp .cont04 .riyu2 .txtarea {
  margin: 0 auto;
  background-color: #fff;
  padding:0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.content_lp .cont04 .riyu2 .txtarea .title {
  color: #00376E;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

.content_lp .cont04 .riyu2 .txtarea .p1 {
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.content_lp .cont04 .riyu3 {
  position: relative;
  background: url(../img/sp/cont4_img3.png) no-repeat top center;
  background-size: 100% auto;
  padding:60px 0 32px;
}
.content_lp .cont04 .riyu3::before {
  content: "02";
  position: absolute;
  left: 44px;
  top: -3px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #00376E;
  z-index: 1;
}
.content_lp .cont04 .riyu3 .txtarea {
  margin: 0 auto;
  background-color: #fff;
  padding:0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.content_lp .cont04 .riyu3 .txtarea .title {
  color: #00376E;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

.content_lp .cont04 .riyu3 .txtarea .p1 {
  text-align: left;
  font-size: 13px;
  line-height: 1.6;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.content_lp .cont04 .riyu3 .ropetxt {
  width: 90%;
  margin: 0 auto;
  padding:0;
}
.content_lp .cont04 .riyu3 .subttl {
color: #00376E;
font-weight: 600;
}
.content_lp .cont04 .riyu3 .title2 {
  color: #376B9F;
  font-size: 16px;
  font-weight: 800;
  margin-top: 1rem;
  text-align: center;
}
.content_lp .cont04 .riyu3 .ropetxt .p2{ font-size:13px;line-height: 1.6;padding-bottom: 2rem;}


.content_lp .cont04 .line{
background: linear-gradient(transparent 70%, #F5EC0D 0%);
line-height: 1.3em;
}

@media screen and (min-width: 751px) {
  .content_lp .cont04 {
    background-color: #A5E7FF;
    padding-bottom: 2rem;
  }
  .content_lp .cont04 h3.title {
    margin: 0 auto;
    text-align: center;
    padding: 10rem 0 1rem 0;
    color: #00376E;
    font-size: 40px;
  }
  .content_lp .cont04 .p1 {
    text-align: center;
    padding-bottom: 4rem;
  }
  .content_lp .cont04 .riyu1 {
    position: relative;
    background: url(../img/pc/cont4_img1.png) no-repeat center center;
    background-size: contain;
    aspect-ratio: auto;
    height: 720px;
    display: block;
    margin-bottom: 4rem;
    padding: 0;
  }
  .content_lp .cont04 .riyu1::before {
    content: "01";
    position: absolute;
    left: calc((100% - 1040px) / 2);
    top:9px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 110px;
    line-height: 1;
    color: #00376E;
    z-index: 1;
  }
  .content_lp .cont04 .riyu1 .txtarea {
    width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: transparent;
  }
  .content_lp .cont04 .riyu1 .txtarea .title {
    color: #00376E;
    font-size: 30px;
    padding:0rem 0 1rem 8.2rem;
    line-height: 1.4;
    text-align: left;
  }
  .content_lp .cont04 .riyu1 .txtarea .p1 {
    text-align: left;
    padding: 1rem 0 0 2rem;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .content_lp .cont04 .riyu1 .txtarea .point {
    background: url(../img/pc/cont4_img1-point.png) no-repeat center center;
    background-size: contain;
    aspect-ratio: auto;
    height: 272px;
    display: block;
  }
  .content_lp .cont04 .riyu1 .txtarea .point ul.pointtxt {
    width: 675px;
    margin: 0 auto;
    padding-top: 6.5rem;
  }
  .content_lp .cont04 .riyu1 .txtarea .point ul.pointtxt li.p1,
  .content_lp .cont04 .riyu1 .txtarea .point ul.pointtxt li.p2 {
    float: left;
    width: 30%;
    text-align: center;
    padding: 0 1.8rem 0 0;
    font-size: 20px;
    line-height: 1.8;
  }
  .content_lp .cont04 .riyu1 .txtarea .point ul.pointtxt li.p3 {
    float: right;
    width: 30%;
    text-align: center;
    padding: 0;
    font-size: 20px;
    line-height: 1.8;
  }
  .content_lp .cont04 .riyu2 {
      position: relative;
      background: url(../img/pc/cont4_img2.png) no-repeat center center;
      background-size: contain;
      height: 720px;
      margin-bottom: 4rem;
      display: block;
      padding: 0;
    }

    .content_lp .cont04 .riyu2::before {
      content: "03";
      position: absolute;
      top: 60px;
      left: calc((100% - 1040px) / 2 + 875px);
      font-family: "Jost", sans-serif;
      font-weight: 700;
      font-size: 110px;
      line-height: 1;
      color: #00376E;
      z-index: 5;
    }

    .content_lp .cont04 .riyu2 .txtarea {
      width: 939px;
      margin: 0 auto;
      padding-top: 3rem;
      background-color: transparent;
    }

    .content_lp .cont04 .riyu2 .txtarea .title {
      color: #00376E;
      font-size: 30px;
      padding: 1rem 0 1rem 12rem;
      line-height: 1.4;
      text-align: left;
    }

    .content_lp .cont04 .riyu2 .txtarea .p1 {
      text-align: left;
      padding: 1rem 0 0 12rem;
      font-size: 17px;
      line-height: 1.6;
    }

    .content_lp .cont04 .riyu2 .txtarea .support {
      background: url(../img/pc/cont4_img2-support.png) no-repeat center center;
      background-size: contain;
      height: 272px;
      margin: 1rem 0 0 12rem;
    }

    .content_lp .cont04 .riyu2 .txtarea .support ul.supporttxt {
      width: 620px;
      margin: 0 auto;
      padding-top: 6rem;
      display: flex;
    }

    .content_lp .cont04 .riyu2 .txtarea .support ul.supporttxt li.p1,
    .content_lp .cont04 .riyu2 .txtarea .support ul.supporttxt li.p2 {
      width: 30%;
      text-align: center;
      padding: 1.8rem 2rem 0 0;
      font-size: 20px;
      line-height: 1.8;
    }

    .content_lp .cont04 .riyu2 .txtarea .support ul.supporttxt li.p3 {
      width: 30%;
      text-align: center;
      padding: 0;
      font-size: 20px;
      line-height: 1.8;
    }

    .content_lp .cont04 .riyu2 .txtarea .att {
      font-size: 14px;
      float: right;
      padding: 1.2rem 2rem 0 0;
    }
.content_lp .cont04 .riyu3 {
  position: relative;
  background: url(../img/pc/cont4_img3.png) no-repeat center center;
  background-size: contain;
  aspect-ratio: auto;
  height: 860px;
  display: block;
  margin-bottom: 3rem;
  padding: 0;
}

.content_lp .cont04 .riyu3::before {
  content: "02";
  position: absolute;
  left: calc((100% - 1040px) / 2);
  top:118px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  color: #00376E;
  z-index: 1;
}

.content_lp .cont04 .riyu3 .txtarea {
  width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: transparent;
}

.content_lp .cont04 .riyu3 .txtarea .title {
  color: #00376E;
  font-size: 30px;
  padding:5rem 0 1rem 9rem;
  line-height: 1.4;
  padding-top: 6rem;
  text-align: left;
}

.content_lp .cont04 .riyu3 .txtarea .p1 {
  text-align: left;
  padding: 1rem 0 0 2rem;
  font-size:17px;
  line-height: 1.6;
  width: 100%;
    margin: 0;
}
.content_lp .cont04 .riyu3 .subttl {
  color: #00376E;
  font-weight: 600;
}
.content_lp .cont04 .riyu3 .title2 {
  color: #376B9F;
  font-size: 24px;
  font-weight: 800;
  text-align: left;
    margin: 0;
}
.content_lp .cont04 .riyu3 .ropetxt {
  width: 630px;
  margin-top: 3rem;
  padding-left:14rem;
}
.content_lp .cont04 .riyu3 .ropetxt .p2{ font-size:17px;line-height: 1.6;padding:0;}


.content_lp .cont04 .line{
  background: linear-gradient(transparent 75%, #F5EC0D 0%);
  line-height: 1.3em;
}

}
/* -----------------------------------------------------
    cont05
*/

@media screen and (min-width: 751px){
  .content_lp .cont05{
    padding: 80px 0 90px;
    position: relative;
  }

  .content_lp .cont05::before{
    content:"";
    position:absolute;
    left: 0;
    top: 520px;
    width: 1089px;
    height: 375px;
    background:#FBF6A8;
    z-index: 0;
  }

  .content_lp .cont05 .case-media{
    width: 1040px;
    height: 761px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: url(../img/pc/cont5.png) no-repeat center center;
    background-size: contain;
  }

  .content_lp .cont05 .tt01{
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    display: block;
  }

  .content_lp .cont05 .tt01 .title{
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;

    font-weight: 700;
    color: #00376E;
    margin: 0 0 12px;
    font-size: 46px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .content_lp .cont05 .tt01 .title::after{
    content: "";
    height: 5px;
    width: 300px;
    margin-left: 15px;
    background-color: #00376E;
    flex: 0 0 auto;
  }

  .content_lp .cont05 .tt01 .jiki{
    background-color: #EAEAEA;
    width: 418px;
    height: 62px;
    font-size: 33px;
    padding-left: 2rem;
  }

  .content_lp .cont05 .tt01 .p1{
    font-size: 38px;
    padding: 0.5rem 1rem 0 2rem;
  }
}
/* -----------------------------------------------------
    cont06
*/
.content_lp .cont06{
  padding: 60px 0;
  background: #fff;
}

.content_lp .cont06 .title{
  text-align: center;
  color: #376B9F;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 28px;
}

/* タイムライン本体 */
.content_lp .cont06 .flow{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: min(92%, 708px);
  counter-reset: step;
}

/* 各行 */
.content_lp .cont06 .flow-item{
  position: relative;
  padding: 0 0 22px 84px;
}

.content_lp .cont06 .flow-item::before{
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  left: 16px;
  top: 4px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #376B9F;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}
.content_lp .cont06 .flow-item{
  background:
    linear-gradient(#376B9F,#376B9F) 42px 0 / 4px 4px no-repeat,                          /* 上の短い線 */
    linear-gradient(#376B9F,#376B9F) 42px calc(4px + 52px) / 4px calc(100% - (4px + 52px)) no-repeat; /* 下の線 */
}

.content_lp .cont06 .flow-item:first-child{
  background:
    linear-gradient(#376B9F,#376B9F) 42px calc(4px + 52px) / 4px calc(100% - (4px + 52px)) no-repeat;
}

.content_lp .cont06 .flow-item:last-child{
  background:
    linear-gradient(#376B9F,#376B9F) 42px 0 / 4px 4px no-repeat;
}
.content_lp .cont06 .flow-item:first-child:last-child{
  background: none;
}

.content_lp .cont06 .flow-ttl{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.content_lp .cont06 .flow-txt{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #333;
}

@media screen and (min-width: 751px){
  .content_lp .cont06{
    padding: 90px 0;
  }

  .content_lp .cont06 .title{
    font-size: 26px;
    margin-bottom: 40px;
  }

  .content_lp .cont06 .flow-item{
    padding-left: 110px;
    padding-bottom: 30px;
  }

  .content_lp .cont06 .flow-item::before{
    left: 22px;
    width: 64px;
    height: 64px;
    font-size: 36px;
  }

  .content_lp .cont06 .flow-item{
    background:
      linear-gradient(#2F5FA8,#2F5FA8) 54px 0 / 5px 4px no-repeat,
      linear-gradient(#2F5FA8,#2F5FA8) 54px calc(4px + 64px) / 5px calc(100% - (4px + 64px)) no-repeat;
  }

  .content_lp .cont06 .flow-item:first-child{
    background:
      linear-gradient(#2F5FA8,#2F5FA8) 54px calc(4px + 64px) / 5px calc(100% - (4px + 64px)) no-repeat;
  }

  .content_lp .cont06 .flow-item:last-child{
    background:
      linear-gradient(#2F5FA8,#2F5FA8) 54px 0 / 5px 4px no-repeat;
  }

  .content_lp .cont06 .flow-item:first-child:last-child{
    background: none;
  }

  .content_lp .cont06 .flow-ttl{
    font-size: 20px;
  }

  .content_lp .cont06 .flow-txt{
    width: 544px;
    font-size: 16px;
  }
}
/* -----------------------------------------------------
    cont07
*/
.cont07 {
  background-color: #EAE1C3;
  padding: 4rem 0;
}

  .content_lp .cont07 .section-title {
  text-align: center;
  font-size: 20px;
  background: linear-gradient(transparent 90%, #A7955B 0%);
  line-height: 2.3em;
  width: 38%;
  margin: 0px auto 2rem auto;
}

  .content_lp .cont07 .client-faq{
    padding: 2rem 1.2rem 1rem;
  }
  .content_lp .cont07 .faq-block{ margin-bottom: 1.8rem; }
  .content_lp .cont07 .faq-group-ttl{
    font-weight: 700;
    color: #1ba7c9;
    margin: 1rem 0 .8rem;
  }

  .content_lp .cont07 .faq{
    margin-bottom: 1rem;
    background-color: #fff;
  width: 94%;
  margin: 0 auto 1.5rem;
  }

  .content_lp .cont07 .faq > summary{
    cursor: pointer;
    padding: 1rem 2.2rem 1rem 1rem;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: var(--faq-bg);
    -webkit-tap-highlight-color: transparent;
  }
  .content_lp .cont07 .bubble.q {
    display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #376B9F;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  }
  .content_lp .cont07 .ttl{font-size:1rem;font-weight: bold;}
  .content_lp .cont07 .faq > summary::-webkit-details-marker{ display:none; }
  .content_lp .cont07 .faq > summary::after{
    content: "";
    position: absolute;
    right:1.9rem;
    top: 50%;
    width: .8rem; height: .8rem;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    transform: translateY(-60%) rotate(45deg);
    transition: transform .25s ease;
  }
  .content_lp .cont07 .bubble.a {
    display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9F374B;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  }
  .content_lp .cont07 .tta{font-size:1rem; padding-left: 1.7rem;}
  .content_lp .cont07 .faq[open] > summary{
    background: var(--faq-open);
  }
  .content_lp .cont07 .faq[open] > summary::after{
    transform: translateY(-20%) rotate(-135deg);
  }

  .content_lp .cont07 .faq .mark{
    display: inline-grid;
    place-items:center;
    width: 1.6rem; height: 1.6rem;
    border-radius: 50%;
    color:#fff;
    font-size: .95rem;
    font-weight: 700;
    flex: 0 0 auto;
  }
  .content_lp .cont07 .faq .mark.q{ background: var(--q); }
  .content_lp .cont07 .faq .mark.a{ background: var(--a); }
  .content_lp .cont07 .faq .q-text{
    font-weight: 700;
    color: var(--deep);
    font-size: 1.1rem;
  }

  .content_lp .cont07 .faq .answer{
    padding: 1rem 2.2rem 1rem 1rem;
    font-size: 1.05rem;
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    gap: .6rem .6rem;
    align-items: flex-start;
    background: var(--faq-bg);
    border-top: 1px solid var(--line);
  }
  .content_lp .cont07 .faq .answer .a-text{ grid-column: 2 / -1; }

  @media (min-width: 751px){
    .content_lp .cont07 .section-title {
      text-align: center;
    font-size: 40px;
    background: linear-gradient(transparent 91%, #A7955B 0%);
    line-height: 2em;
    width: 27%;
    margin: 0 auto 2rem;
    }
  .content_lp .cont07 .client-faq{ padding: 2rem 0; max-width: 980px; margin: 0 auto; }
  .content_lp .cont07 .faq > summary{ padding: 1.2rem 2.4rem 1.2rem 1.2rem; }
  .content_lp .cont07 .faq .q-text{ font-size: 1.125rem; }
  .content_lp .cont07 .faq .answer{ font-size: 1rem; padding:1.2rem 2.4rem 1.2rem 1.2rem; }

  }

  /* -----------------------------------------------------
      cont08
  */
  .content_lp .cont08{
    background: url(../img/pc/con_bg.jpeg) no-repeat center center;
    background-size: cover;
    padding: 64px 0 72px;
  }

  .content_lp .cont08 .cont08__inner{
    width: min(92%, 1040px);
    margin: 0 auto;
    text-align: center;
  }

  .content_lp .cont08 .cont08__catch{
    margin: 0 0 18px;
    font-weight: 700;
    color: #222;
    font-size: 22px;
    line-height: 1.6;
  }

  .content_lp .cont08 .cont08__lead{
    margin: 0 auto 28px;
    color: #333;
    font-size: 13px;
    line-height: 2;
    max-width: 520px;
  }

  .content_lp .cont08 .cont08__cta{
    display: grid;
    gap: 14px;
    justify-content: center;
    margin: 0 auto 18px;
    width: min(92%, 460px);
  }

  .content_lp .cont08 .cont08__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .02em;
    font-size: 16px;
    position: relative;
    width: 100%;
  }

  .content_lp .cont08 .cont08__btn--tel{
    background: #A50000;
    color: #fff;
  }

  .content_lp .cont08 .cont08__btn--mail{
    background: #376B9F;
    color: #fff;
  }

  .content_lp .cont08 .cont08__icon{
    width: 22px;
    height: 22px;
    display: block;
  }

  .content_lp .cont08 .cont08__arrow{
    position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
  }

  .content_lp .cont08 .cont08__note{
    margin-top: 14px;
    display: grid;
    gap: 10px;
    justify-content: center;
  }

  .content_lp .cont08 .cont08__noteItem{
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #222;
    font-size: 12px;
  }

  .content_lp .cont08 .cont08__noteIcon{
    width: 18px;
    height: 18px;
    display: block;
  }

  @media screen and (min-width: 751px){
  .content_lp .cont08{
    background: url(../img/pc/con_bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 88px 0 92px;
  }

  .content_lp .cont08 .cont08__inner{
    width: min(92%, 1040px);
  }

  .content_lp .cont08 .cont08__catch{
    font-size: 30px;
    margin-bottom: 18px;
  }

  .content_lp .cont08 .cont08__lead{
    font-size: 15px;
    max-width: 740px;
    margin-bottom: 34px;
  }
  .content_lp .cont08 .cont08__cta{
    width: 100%;
    max-width: 800px;
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: 313px 313px;
    gap: 80px;
    justify-content: center;
  }

  .content_lp .cont08 .cont08__btn{
    height: 76px;
    font-size: 18px;
    width: 280px;
    justify-content: flex-start;
    padding-left: 67px;
  }

  .content_lp .cont08 .cont08__icon{
    width: 26px;
    height: 26px;
  }

  .content_lp .cont08 .cont08__arrow{
    right: 35px;
    top: 47%;
    transform: translateY(-50%);
    font-size: 30px;
    line-height: 1;
  }

  .content_lp .cont08 .cont08__note{
    grid-template-columns: auto auto;
    gap: 22px;
    margin-top: 18px;
  }

  .content_lp .cont08 .cont08__noteItem{
    font-size: 13px;
  }
  }

  @media screen and (max-width: 750px){
    .content_lp .cont08{
      background: url(../img/sp/con_bg.jpg) no-repeat center center;
      background-size: cover;
    }
    .content_lp .cont08 .cont08__cta{
   justify-items: center;
 }
 .content_lp .cont08 .cont08__btn{
   width: min(260px, 90vw);
 }

    .content_lp .cont08 .cont08__inner{
      width: min(96%, 1040px);
    }
  }

  /* -----------------------------------------------------
    cont09
    */

  .content_lp .cont09{
    background: #fff;
    padding: 70px 0 0;
  }

  .content_lp .cont09 .cont09__inner{
    width: min(92%, 1040px);
    margin: 0 auto;
  }

  .content_lp .cont09 .cont09__grid{
    display: grid;
    gap: 40px;
  }

  @media screen and (min-width: 751px){
    .content_lp .cont09{
      padding: 90px 0 0;
    }
    .content_lp .cont09 .cont09__grid{
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
  }

  .content_lp .cont09 .company-table{
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #00376E;
    table-layout: fixed;
    background: #fff;
    border-bottom: 2px solid #00376E;
  }

  .content_lp .cont09 .company-table th,
  .content_lp .cont09 .company-table td{
    border: none;
    border-bottom:1px #CDD6DD solid;
    padding: 18px 18px;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.8;
    color: #111;
  }

  .content_lp .cont09 .company-table th{
    width: 32%;
    font-weight: 600;
  }


  .content_lp .cont09 .map-embed{
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #CDD6DD;
    background: #fff;
  }

  .content_lp .cont09 .map-embed iframe{
    width: 100%;
    height: 100%;
    display: block;
  }

  @media screen and (max-width: 750px){
    .content_lp .cont09 .map-embed{
      aspect-ratio: 1 / 0.78;
    }
    .content_lp .cont09 .company-table th,
    .content_lp .cont09 .company-table td{
      padding: 14px 14px;
      font-size: 13px;
    }
  }


  /* -----------------------------------------------------
    footer
    */


  .site-footer{
    background: #00376E;
    color: #fff;
    padding: 56px 0 34px;
    margin-top: 70px;
  }

  .site-footer__inner{
    width: min(92%, 1040px);
    margin: 0 auto;
    display: grid;
    gap: 26px;
  }

  @media screen and (min-width: 751px){
    .site-footer{
      padding: 70px 0 38px;
      margin-top: 90px;
    }
    .site-footer__inner{
      grid-template-columns: 1.2fr 1fr;
      align-items: start;
    }
  }

  .site-footer .footer-logo{
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .site-footer .footer-tagline{
    margin: 0 0 22px;
    font-size: 16px;
    opacity: .9;
  }

  .site-footer .footer-copy{
    margin: 18px 0 0;
    font-size: 11px;
    opacity: .75;
  }

  .site-footer .footer-nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
  }

  .site-footer .footer-nav a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    opacity: .95;
  }

  .site-footer .footer-nav a:hover{
    opacity: .75;
  }

  @media screen and (max-width: 750px){
    .site-footer .footer-logo{
      font-size: 24px;
    }
    .site-footer .footer-nav ul{
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .site-footer .footer-nav a{
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      opacity: .95;
    }
  }


  /* -----------------------------------------------------
      お問い合わせ
  */

  #contact {
  margin-top: 6rem;
}

  #contact .contact_title  {
    font-size: 20px;
  color: #505050;
  padding: 3rem 1rem 3rem 2rem;
  text-align: center;
  }

  #contact .contact-wrap {
    margin: 0 auto;
    padding: 4rem 1.5rem 8rem;
    color: #505050;
    text-align: center;
  }

  #contact .form {
    padding-top: 1.5rem;
  }

  #contact .contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

  #contact .contact-desc {
    width:90%;
    font-size: 1.1rem;
    line-height: 1.7;
    margin:0 auto;
  }

  #contact .contact-wrap label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-align: left;
  }

  #contact .contact-wrap .required {
    color: #c93030;
    margin-left: 0.2em;
  }

  #contact .contact-wrap input[type="text"],
  #contact .contact-wrap input[type="email"],
  #contact .contact-wrap input[type="tel"],
  #contact .contact-wrap input[type="url"],
  #contact .contact-wrap textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.8rem;
    font-size: 01rem;
    color: #505050;
    background: #fff;
    margin-bottom: 2rem;
    transition: border-color 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  #contact .contact-wrap input:focus,
  #contact .contact-wrap textarea:focus {
    border-color: #376B9F;
    outline: none;
  }

  #contact .contact-wrap textarea {
    min-height: 160px;
    resize: vertical;
  }

  #contact .contact-privacy {
    margin: 2rem 0 3rem;
    text-align: left;
    font-size: 1.3rem;
  }

  #contact .wpcf7-list-item {
    margin: 0;
  }

  #contact .contact-wrap input[type="checkbox"] {
    display: inline-block;
    transform: scale(1.2);
    margin-right: 0.5rem;
  }

  #contact .contact-wrap input[type="submit"] {
    display: inline-block;
    width: 100%;
    background: #376B9F;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    border-radius: 9999px;
    padding: 1.2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #contact .contact-wrap input[type="submit"]:hover {
    opacity: 0.8;
  }

  #contact .contact-wrap .contact-submit {
    text-align: center;
  }


  #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox {
    display: block;
  }

  #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin-bottom: 0.3rem;
  }

  #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
    margin-left: 0.5rem;
  }


  #contact .contact-wrap input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 0;
  }

  #contact .contact-lead {
  text-align: center;
}

  @media screen and (min-width: 751px) {

    #contact .form {
      padding-top: 8rem;
      margin-bottom: 5rem;
    }

    #contact .contact_title {
      font-size: 40px;
      text-align: center;
      margin-bottom: 1rem;
    }

    #contact .contact-wrap {
      max-width: 800px;
      text-align: left;
      padding: 0 0 5rem;
    }
      #contact .contact-lead {
      text-align: center;
      margin-bottom: 2rem;
    }

    #contact .contact-title {
      font-size: 2.4rem;
      text-align: left;
    }

    #contact .contact-desc {
      font-size:1rem;
      margin-bottom: 3.5rem;
      text-align: left;
    }

    #contact .contact-wrap input[type="text"],
    #contact .contact-wrap input[type="email"],
    #contact .contact-wrap input[type="tel"],
    #contact .contact-wrap input[type="url"],
    #contact .contact-wrap textarea {
      width: 100%;
      max-width: 800px;
    }

    #contact .contact-wrap textarea {
      min-height: 200px;
    }

    #contact .contact-privacy {
      text-align: left;
    }

    #contact .contact-wrap input[type="submit"] {
      width: auto;
      padding: 1rem 6rem;
    }
    #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox {
      display: flex;
      flex-wrap: wrap;
      column-gap: 1.5rem;
      row-gap: 0.4rem;
    }

    #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
      display: inline-flex;
      align-items: center;
      margin-bottom: 0;
    }

    #contact .contact-wrap .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
      margin-left: 0.5rem;
    }

  }
  .pt2 {
    padding-top: 2rem;
  }

  /* ------ サンクスページ*/

  .thanks_cont01 {
    margin: 10rem auto;
    text-align: center;
    width: 90%;
  }
  .thanks_cont01 h3{
    font-weight: bold;
    color: #102541;
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }

  @media screen and (min-width: 751px) {
    .thanks_cont01 {
      margin: 10rem auto;
      text-align: center;
    }
    .thanks_cont01 h3{
      font-weight: bold;
      color: #102541;
      font-size: 2rem;
      padding-bottom: 3rem;
    }
  }
  /* -----------------------------------------------------
      チャットボットバナー
  */
  .chat-bnr{
  position: fixed;
  z-index: 2000;
  text-decoration: none;
}

.chat-bnr img{
  display: block;
  width: 100%;
  height: auto;
}

.chat-bnr--sp{
  display: block !important;
  right: 12px;
  bottom: 12px;
  width: 221px;
  max-width: 78vw;
}

.chat-bnr--pc{
  display: none !important;
}

@media screen and (min-width: 751px){
  .chat-bnr--pc{
    display: block !important;
    right: 20px;
    bottom: 20px;
    width: 300px;
    max-width: 40vw;
  }
  .chat-bnr--sp{
    display: none !important;
  }
}

.grecaptcha-badge { visibility: hidden; }
.privacy {
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
