@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap&subset=japanese);

/******************************/
/* reset */
*, ::after, ::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

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

img {
  vertical-align: top;
  width: 100%;
}

ol, ul {
  list-style: none;
}

/* reset */
/******************************/
/* common */

html * {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  max-width: 700px;
}
html {
    background: #ffffff;
}

#thanks {
    font-family: 'Noto Sans JP', sans-serif;
}

.new-h1 {
    color: #ff4600;
    font-size: 14px;
}

.new-end {
    color: #0f3264;
    font-size: 26px;
}

.new-note {
    color: #0f3264;
    font-size: 16px;
    margin-top: 20px;
}

.bg_color {
    padding: 30px 0 40px;
    background-image: linear-gradient(to top, rgba(233, 85, 18, 0.7), rgba(242, 151, 0, 0.5));
}

.new-article {
    color: #0f3264;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.line {
    width: 100%;
    border-bottom: 2px dotted #1a3261;
    margin: 20px 0;
}

.new-mail {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #1a3261;
    font-size: 14px;
}

.new-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #1a3261;
    font-size: 14px;
    margin-top: 10px;
}

.new-tel .ja {
    font-size: 12px;
}

.new-info .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}

.new-info .icon svg {
    width: 100%;

}

.new-btn a {
    margin: 20px auto;
    background-color: #1a3261;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50vw;
    border: 2px solid #1a3261;
    color: #ffffff;
    display: block;
    max-width: 260px;
    padding: 10px;
}

.headLine .box {
    display: flex;
    align-items: center;
}

.new-slogan {
    font-size: 12px;
}
body {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  color: #4D4848;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}

@media (width < 600px) {
  body {
    font-size: 14px;
  }
}

.wrapper {
  padding: 0 5%;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.mb10 {
  margin-bottom: 10px;
}

.mb1em {
  margin-bottom: 1em;
}

.ml1em {
  margin-left: 1em;
}

.red {
  color: red;
}

.bg_white {
  background-color: #FFF;
}

.bg_gray {
  background-color: #F5F5F5;
}

.bg_yellow {
  background-color: yellow;
}

.url {
  text-decoration: underline;
}

.grid {
  display: grid;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.balloon {
  position: relative;
  padding: 10px;
  width: 100px;
  height: auto;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  background-color: #f05b5b;
  border: 1px solid #4D4848;
  background-color: transparent;
  --balloon-right: -3px;
  --balloon-bottom: -4px;
  --rotate: -90deg;
  --tri-height: 10px;
  --tri-width: 15px;
  --border-left: var(--tri-height) solid #4D4848;
  --border-left-w: var(--tri-height) solid #F5F5F5;
  --border-top: var(--tri-width) solid transparent;
  --border-bottom: var(--tri-width) solid transparent;
}

.balloon::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: var(--balloon-right);
  bottom: var(--balloon-bottom);
  border-left: var(--border-left);
  border-top: var(--border-top);
  border-bottom: var(--border-bottom);
  transform: rotate(var(--rotate));
}

.balloon::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: calc(var(--balloon-right) + 3px);
  bottom: calc(var(--balloon-bottom) + 1px);
  border-left: var(--border-left-w);
  border-top: var(--border-top);
  border-bottom: var(--border-bottom);
  transform: rotate(var(--rotate));
}

/* common */
/******************************/

header {
  background-color: #fff;
  position: relative;
  z-index: 50;
  padding-bottom: 20px;
}

header .headLine .logo img {
  height: 48px;
  width: 112px;
  object-fit: contain;
}

header hgroup h1 {
  font-size: 2em;
}

main {
  padding-top: 20px;
}

main hgroup {
  width: max-content;
  margin: 0 auto;
}

main hgroup h2,
main hgroup p {
  font-size: 1.1em;
}

main .content {
  padding-top: 15px;
  padding-bottom: 15px;
}

main .content h3 {
  font-size: 1.1em;
}

main .content p {
  font-size: 0.9em;
  line-height: 1.3;
}

main .content.content1 .btnArea.grid.grid1 {
  justify-items: center;
  gap: 10px;
}

main .content.content1 .btnArea .grid.grid2 {
  justify-items: center;
  gap: 3em;
  width: max-content;
}

main .content.content1 .btnArea .grid.grid2 a.btn {
  display: inline-block;
  color: #FFF;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  width: 100%;
}

@media (width < 600px) {
  main .content.content1 .btnArea>.grid.grid2 {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

main .content.content1 .btnArea .grid.grid2 a.btn span.small {
  font-size: 0.6em;
}

main .content.content1 .btnArea .grid a.btn.east {
  background-color: #FAB730;
}

main .content.content1 .btnArea .grid a.btn.west {
  background-color: #85A2D4;
}

main .content.content1 .btnArea p {
  font-size: 0.8em;
}

main .content.content2 .steps.grid {
  gap: 1em;
}

main .content.content2 .steps>.grid2 {
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 10px;
}

main .content.content2 .steps>.grid2>.g_head {
  width: max-content;
  height: max-content;
}

main .content.content2 .steps>.grid2>.g_head p {
  margin: 3px;
  padding: 0.5em 1em;
  background-color: #777;
  color: #fff;
}

main .content.content2 .steps>.grid2>.g_body {
  padding: 0.5em 1em;
}

main .content.content3 p {
  font-size: 1.2em;
}

@media (width < 600px) {
  main .content.content3 p.small {
    word-break: keep-all;
  }
}

main .content.content3 .grid {
  justify-items: end;
}

main .content.content3 .grid img {
  width: 180px;
  height: auto;
}


/******************************/
/* footer */
footer {
  display: block;
  background-color: black;
  padding: 0;
  margin-top: auto;
}

footer .wrapper {
  padding: 11px 0 10px;
  border-top: 1px solid #8D8D8D;
  text-align: center;
  font-size: 10px;
  line-height: 1;
}

footer .copy {
  color: white;
}

footer .wrapper_white {
  background-color: white;
}

footer .company {
  padding: 10px;
  text-align: center;
  margin: auto;
  font-size: 12px;
  width: 130px;
  color: black;
}

footer .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

footer .arrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #5b5b5b;
  border-right: solid 2px #5b5b5b;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -8px;
}
.p-thanks-banner{
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
}
.p-thanks-banner__img{
    display: block;
}
@media screen and (max-width:768px){
    .p-thanks-banner__img {
            display: none;
        }
}
.p-thanks-banner__img.--sp {
    display: none;
}
@media screen and (max-width:768px){
    .p-thanks-banner__img.--sp {
            display: block;
        }
}
